aboutsummaryrefslogtreecommitdiff
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
parent12d0a7a62cf935134f96fd7e40639c42bb31c126 (diff)
downloadPROJ-7bf657b368fb3a291e9c3a2b29a92c18a930ffa7.tar.gz
PROJ-7bf657b368fb3a291e9c3a2b29a92c18a930ffa7.zip
update version numbers for upcomming patch release
-rw-r--r--CMakeLists.txt4
-rw-r--r--configure.ac2
-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
6 files changed, 9 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1c9a6943..75c46969 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -95,9 +95,9 @@ colormsg(_HIBLUE_ "Configuring PROJ:")
#PROJ version information
################################################################################
include(ProjVersion)
-proj_version(MAJOR 6 MINOR 1 PATCH 0)
+proj_version(MAJOR 6 MINOR 1 PATCH 1)
set(PROJ_API_VERSION "16")
-set(PROJ_BUILD_VERSION "16.0.1")
+set(PROJ_BUILD_VERSION "16.1.1")
################################################################################
# Build features and variants
diff --git a/configure.ac b/configure.ac
index 39558298..4812b34f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([PROJ], [6.1.0],
+AC_INIT([PROJ], [6.1.1],
[https://github.com/OSGeo/PROJ/issues], proj, [https://proj.org])
AC_CONFIG_MACRO_DIR([m4])
AC_LANG(C)
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;