[geos-commits] [SCM] GEOS branch 3.10 updated. ec62681a39aa4915f796ffb18d5f54aa8c89f24c

git at osgeo.org git at osgeo.org
Sat Oct 23 19:16:08 PDT 2021


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.10 has been updated
       via  ec62681a39aa4915f796ffb18d5f54aa8c89f24c (commit)
       via  9964dc649f5a6a4255b998d72009d15f905af892 (commit)
      from  c385af6a4cd7c3e083fccb1c6894b5b6f8398b01 (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 ec62681a39aa4915f796ffb18d5f54aa8c89f24c
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Sat Oct 23 19:16:02 2021 -0700

    New entry for GH489

diff --git a/NEWS b/NEWS
index 175d028b7..8acfd4889 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ Changes in 3.10.1
 2021-xx-xx
 
 - Fixes/Improvements:
+  - Fix mistake in constants used to select WKB flavor in C API (GH489, Paul Ramsey)
 
 
 Changes in 3.10.0

commit 9964dc649f5a6a4255b998d72009d15f905af892
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Sat Oct 23 19:14:44 2021 -0700

    Reverse the constants used to determine WKB flavor in order to match the CAPI. Closes GH489

diff --git a/include/geos/io/WKBConstants.h b/include/geos/io/WKBConstants.h
index 147a22530..51d9615f4 100644
--- a/include/geos/io/WKBConstants.h
+++ b/include/geos/io/WKBConstants.h
@@ -41,8 +41,8 @@ namespace WKBConstants {
     };
 
     enum wkbFlavour {
-        wkbIso = 1,
-        wkbExtended = 2
+        wkbExtended = 1,
+        wkbIso = 2
     };
 
 }

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

Summary of changes:
 NEWS                           | 1 +
 include/geos/io/WKBConstants.h | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list