[geos-commits] [SCM] GEOS branch 3.7 updated. 291a818bdccd2c986a88aab79b2b87805a579d53

git at osgeo.org git at osgeo.org
Thu May 2 15:48:33 PDT 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, 3.7 has been updated
       via  291a818bdccd2c986a88aab79b2b87805a579d53 (commit)
       via  b55d21254ab667f942c5ce0c85e937509992d3ee (commit)
      from  0cd06b20e07c291d976c5f27ee99d9ac95c8e2ea (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 291a818bdccd2c986a88aab79b2b87805a579d53
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu May 2 15:47:41 2019 -0700

    Bump up version numbers for 3.7.3dev

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5d03bd3..81153c7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,7 @@ endif()
 #################################################################################
 # Set GEOS project
 #################################################################################
-project(GEOS VERSION 3.7.2 LANGUAGES C CXX)
+project(GEOS VERSION 3.7.3 LANGUAGES C CXX)
 
 # Add custom GEOS modules for CMake
 list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules")
@@ -58,7 +58,7 @@ message(STATUS "Setting GEOS version ${VERSION} as port of JTS ${JTS_PORT}")
 
 # GEOS C API version
 set(CAPI_INTERFACE_CURRENT 12)
-set(CAPI_INTERFACE_REVISION 0)
+set(CAPI_INTERFACE_REVISION 3)
 set(CAPI_INTERFACE_AGE 11)
 
 math(EXPR CAPI_VERSION_MAJOR "${CAPI_INTERFACE_CURRENT} - ${CAPI_INTERFACE_AGE}")
diff --git a/HOWTO_RELEASE b/HOWTO_RELEASE
index 5a7bbea..39a4b93 100644
--- a/HOWTO_RELEASE
+++ b/HOWTO_RELEASE
@@ -12,7 +12,7 @@
    $ git tag MAJOR.MINOR.PATCH
 
 6. Run 'make dist-bzip2'.
-   $ ./autogen.sh && ./configure && make dist-bzip2
+   $ make distclean && ./autogen.sh && ./configure && make dist-bzip2
 
 7. Verify that you can unpack and build the tarball
 
diff --git a/NEWS b/NEWS
index 1388a18..ac2eb64 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,12 @@
 Changes in 3.7.2
-2018-05-02
+2019-XX-XX
+
+- Bug fixes / improvements
+  -
+
+
+Changes in 3.7.2
+2019-05-02
 
 - Bug fixes / improvements
   - Envelope constructor using strtod (#875 Paul Ramsey)
diff --git a/capi/geos_c.h.in b/capi/geos_c.h.in
index b06b68b..f665e1c 100644
--- a/capi/geos_c.h.in
+++ b/capi/geos_c.h.in
@@ -61,7 +61,7 @@ extern "C" {
 #define GEOS_CAPI_VERSION_MAJOR 1
 #define GEOS_CAPI_VERSION_MINOR 11
 #define GEOS_CAPI_VERSION_PATCH 0
-#define GEOS_CAPI_VERSION "3.7.2-CAPI-1.11.0"
+#define GEOS_CAPI_VERSION "3.7.3-CAPI-1.11.0"
 #else
 #ifndef GEOS_VERSION_MAJOR
 #define GEOS_VERSION_MAJOR @VERSION_MAJOR@
diff --git a/configure.ac b/configure.ac
index 7bf3d6c..659c612 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@ JTS_PORT=1.13.0
 
 dnl -- Version info for the CAPI
 CAPI_INTERFACE_CURRENT=12
-CAPI_INTERFACE_REVISION=2
+CAPI_INTERFACE_REVISION=3
 CAPI_INTERFACE_AGE=11
 
 dnl
@@ -24,7 +24,7 @@ dnl -- encoding ABI break at every release
 dnl
 VERSION_MAJOR=3
 VERSION_MINOR=7
-VERSION_PATCH=2dev
+VERSION_PATCH=3dev
 VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH"
 VERSION_RELEASE=`echo "$VERSION" | sed -E 's/^([[0-9]+\.[0-9]+\.[0-9]+]).*$/\1/'`
 
diff --git a/include/geos/version.h.vc b/include/geos/version.h.vc
index de10989..313c2fa 100644
--- a/include/geos/version.h.vc
+++ b/include/geos/version.h.vc
@@ -34,11 +34,11 @@
 #endif
 
 #ifndef GEOS_VERSION_PATCH
-#define GEOS_VERSION_PATCH 2
+#define GEOS_VERSION_PATCH 3
 #endif
 
 #ifndef GEOS_VERSION
-#define GEOS_VERSION "3.7.2"
+#define GEOS_VERSION "3.7.3"
 #endif
 
 #ifndef GEOS_JTS_PORT

commit b55d21254ab667f942c5ce0c85e937509992d3ee
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu May 2 15:23:56 2019 -0700

    Set date for 3.7.2 release

diff --git a/NEWS b/NEWS
index 72fa921..1388a18 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
 Changes in 3.7.2
-2018-XX-XX
+2018-05-02
 
 - Bug fixes / improvements
   - Envelope constructor using strtod (#875 Paul Ramsey)
@@ -8,7 +8,6 @@ Changes in 3.7.2
   - Invalid union result from valid polygon inputs (#838)
 
 
-
 Changes in 3.7.1
 2018-11-29
 

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt            |  4 ++--
 HOWTO_RELEASE             |  2 +-
 NEWS                      | 10 ++++++++--
 capi/geos_c.h.in          |  2 +-
 configure.ac              |  4 ++--
 include/geos/version.h.vc |  4 ++--
 6 files changed, 16 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list