aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-06-23 20:30:33 +0200
committerKristian Evers <kristianevers@gmail.com>2019-06-23 20:30:33 +0200
commit7bf657b368fb3a291e9c3a2b29a92c18a930ffa7 (patch)
tree21f1af1eaae4396062e96a086b6efec4cc243ebe /src
parent12d0a7a62cf935134f96fd7e40639c42bb31c126 (diff)
downloadPROJ-7bf657b368fb3a291e9c3a2b29a92c18a930ffa7.tar.gz
PROJ-7bf657b368fb3a291e9c3a2b29a92c18a930ffa7.zip
update version numbers for upcomming patch release
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/proj.h6
-rw-r--r--src/proj_api.h2
-rw-r--r--src/release.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index aed5a393..df3c2850 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -42,7 +42,7 @@ geodtest_LDADD = libproj.la
lib_LTLIBRARIES = libproj.la
-libproj_la_LDFLAGS = -no-undefined -version-info 16:0:1
+libproj_la_LDFLAGS = -no-undefined -version-info 16:1:1
libproj_la_LIBADD = @SQLITE3_LIBS@
libproj_la_SOURCES = \
diff --git a/src/proj.h b/src/proj.h
index 19fd6346..cb50c1b8 100644
--- a/src/proj.h
+++ b/src/proj.h
@@ -1,6 +1,6 @@
/******************************************************************************
- * Project: PROJ.4
- * Purpose: Revised, experimental API for PROJ.4, intended as the foundation
+ * Project: PROJ
+ * Purpose: Revised, experimental API for PROJ, intended as the foundation
* for added geodetic functionality.
*
* The original proj API (defined previously in projects.h) has grown
@@ -154,7 +154,7 @@ extern "C" {
/* The version numbers should be updated with every release! **/
#define PROJ_VERSION_MAJOR 6
#define PROJ_VERSION_MINOR 1
-#define PROJ_VERSION_PATCH 0
+#define PROJ_VERSION_PATCH 1
extern char const PROJ_DLL pj_release[]; /* global release id string */
diff --git a/src/proj_api.h b/src/proj_api.h
index 53b0edfa..435e478b 100644
--- a/src/proj_api.h
+++ b/src/proj_api.h
@@ -38,7 +38,7 @@
#endif
#ifndef PJ_VERSION
-#define PJ_VERSION 610
+#define PJ_VERSION 611
#endif
#ifdef PROJ_RENAME_SYMBOLS
diff --git a/src/release.cpp b/src/release.cpp
index 822ea4a9..40ea3018 100644
--- a/src/release.cpp
+++ b/src/release.cpp
@@ -11,7 +11,7 @@ char const pj_release[] =
STR(PROJ_VERSION_MAJOR)"."
STR(PROJ_VERSION_MINOR)"."
STR(PROJ_VERSION_PATCH)", "
- "May 15th, 2019";
+ "July 1st, 2019";
const char *pj_get_release() {
return pj_release;