Skip to content

Commit

Permalink
Bump versions numbers etc in preperation for version 9.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed Mar 1, 2024
1 parent a05a9e2 commit 3c7e4ee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/proj.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
2 changes: 1 addition & 1 deletion src/release.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

0 comments on commit 3c7e4ee

Please sign in to comment.