diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-08-26 14:04:43 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2019-08-26 14:04:43 +0200 |
| commit | aac38008df0054c3c501a4a5be59d32f31792d3f (patch) | |
| tree | 4d1c139b6094f0a2a65648b2d894bfadcd09e6e4 | |
| parent | 311120c27a25834cfa239ec569023d364709fffb (diff) | |
| download | PROJ-aac38008df0054c3c501a4a5be59d32f31792d3f.tar.gz PROJ-aac38008df0054c3c501a4a5be59d32f31792d3f.zip | |
Update API numbers in preparation for 6.2.0 release
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | docs/source/conf.py | 2 | ||||
| -rw-r--r-- | src/proj.h | 2 | ||||
| -rw-r--r-- | src/proj_api.h | 2 | ||||
| -rw-r--r-- | src/release.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d309b8dc..f654b0ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,7 +95,7 @@ colormsg(_HIBLUE_ "Configuring PROJ:") #PROJ version information ################################################################################ include(ProjVersion) -proj_version(MAJOR 6 MINOR 1 PATCH 0) +proj_version(MAJOR 6 MINOR 2 PATCH 0) set(PROJ_API_VERSION "17") set(PROJ_BUILD_VERSION "17.0.2") diff --git a/configure.ac b/configure.ac index dc09054e..a3d0d021 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.2.0], [https://github.com/OSGeo/PROJ/issues], proj, [https://proj.org]) AC_CONFIG_MACRO_DIR([m4]) AC_LANG(C) diff --git a/docs/source/conf.py b/docs/source/conf.py index df60eb13..dd7adc2d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,7 +66,7 @@ copyright = u'1983-{0}'.format(now.year) # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. -version = '6.1.0' +version = '6.2.0' # use same |release| as |version| release = version @@ -153,7 +153,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_MINOR 2 #define PROJ_VERSION_PATCH 0 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..b933fc6b 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 620 #endif #ifdef PROJ_RENAME_SYMBOLS diff --git a/src/release.cpp b/src/release.cpp index 822ea4a9..13ed45f0 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"; + "September 1st, 2019"; const char *pj_get_release() { return pj_release; |
