diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-03-01 19:25:43 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2019-03-01 19:25:43 +0100 |
| commit | a6add0dc054a55334ee880d83aca8c19510ab858 (patch) | |
| tree | 250c44b0273288e0cef3cbcbe5176b0fd3cc4b4f | |
| parent | e03bfb35013fc0ab1843c906806f8e162db4a59d (diff) | |
| download | PROJ-a6add0dc054a55334ee880d83aca8c19510ab858.tar.gz PROJ-a6add0dc054a55334ee880d83aca8c19510ab858.zip | |
Bump version numbers in preparation for 6.1.0
| -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 670f67e7..6f240dbb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ colormsg(_HIBLUE_ "Configuring PROJ:") #PROJ version information ################################################################################# include(ProjVersion) -proj_version(MAJOR 6 MINOR 0 PATCH 0) +proj_version(MAJOR 6 MINOR 1 PATCH 0) set(PROJ_API_VERSION "15") set(PROJ_BUILD_VERSION "15.0.0") diff --git a/configure.ac b/configure.ac index d0aecf75..d155432b 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.0.0], +AC_INIT([PROJ], [6.1.0], [https://github.com/OSGeo/proj.4/issues], proj, [https://proj4.org]) AC_CONFIG_MACRO_DIR([m4]) AC_LANG(C) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0fd8d540..0abc17ff 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.0.0' +version = '6.1.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 0 +#define PROJ_VERSION_MINOR 1 #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 5c4d5e7a..53b0edfa 100644 --- a/src/proj_api.h +++ b/src/proj_api.h @@ -38,7 +38,7 @@ #endif #ifndef PJ_VERSION -#define PJ_VERSION 600 +#define PJ_VERSION 610 #endif #ifdef PROJ_RENAME_SYMBOLS diff --git a/src/release.cpp b/src/release.cpp index ddc768c6..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)", " - "March 1st, 2019"; + "September 1st, 2019"; const char *pj_get_release() { return pj_release; |
