From 7bf657b368fb3a291e9c3a2b29a92c18a930ffa7 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Sun, 23 Jun 2019 20:30:33 +0200 Subject: update version numbers for upcomming patch release --- CMakeLists.txt | 4 ++-- configure.ac | 2 +- src/Makefile.am | 2 +- src/proj.h | 6 +++--- src/proj_api.h | 2 +- src/release.cpp | 2 +- 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; -- cgit v1.2.3