Skip to content

Commit

Permalink
Update version numbers etc in anticipation of 9.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed Sep 15, 2024
1 parent 6d60e83 commit ab75759
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 @@ -143,7 +143,7 @@ message(STATUS "Configuring PROJ:")
#PROJ version information
################################################################################
include(ProjVersion)
proj_version(MAJOR 9 MINOR 5 PATCH 0)
proj_version(MAJOR 9 MINOR 6 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.5"
version = "9.6"

# The full project version, used as the replacement for |release|
release = "9.5.0-dev"
release = "9.6.0-dev"

# PROJ-data version
data_version = "1.19"
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 5
#define PROJ_VERSION_MINOR 6
#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) ", "
"September 15th, 2024";
"March 1st, 2025";

const char *pj_get_release() { return pj_release; }

0 comments on commit ab75759

Please sign in to comment.