From 3c7e4ee32822d8f2250ecb8327727f9d129e8a77 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Fri, 1 Mar 2024 18:10:01 +0100 Subject: [PATCH] Bump versions numbers etc in preperation for version 9.5.0 --- CMakeLists.txt | 2 +- docs/source/conf.py | 4 ++-- src/proj.h | 2 +- src/release.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3fa3ec688c..7824798382 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,7 +141,7 @@ message(STATUS "Configuring PROJ:") #PROJ version information ################################################################################ include(ProjVersion) -proj_version(MAJOR 9 MINOR 4 PATCH 0) +proj_version(MAJOR 9 MINOR 5 PATCH 0) set(PROJ_SOVERSION 25) set(PROJ_BUILD_VERSION "${PROJ_SOVERSION}.${PROJ_VERSION}") diff --git a/docs/source/conf.py b/docs/source/conf.py index e5b906f2d5..e79431a6f9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,10 +25,10 @@ author = "PROJ contributors" # The major project version, used as the replacement for |version| -version = "9.4" +version = "9.5" # The full project version, used as the replacement for |release| -release = "9.4.0" +release = "9.5.0-dev" # PROJ-data version data_version = "1.17" diff --git a/src/proj.h b/src/proj.h index 6920de64b9..71c2a6d281 100644 --- a/src/proj.h +++ b/src/proj.h @@ -174,7 +174,7 @@ extern "C" { /* The version numbers should be updated with every release! **/ #define PROJ_VERSION_MAJOR 9 -#define PROJ_VERSION_MINOR 4 +#define PROJ_VERSION_MINOR 5 #define PROJ_VERSION_PATCH 0 /* Note: the following 3 defines have been introduced in PROJ 8.0.1 */ diff --git a/src/release.cpp b/src/release.cpp index 102c2d306c..22028792df 100644 --- a/src/release.cpp +++ b/src/release.cpp @@ -8,6 +8,6 @@ char const pj_release[] = "Rel. " STR(PROJ_VERSION_MAJOR) "." STR( PROJ_VERSION_MINOR) "." STR(PROJ_VERSION_PATCH) ", " - "March 1st, 2024"; + "September 1st, 2024"; const char *pj_get_release() { return pj_release; }