Skip to content

Commit

Permalink
Update version numbers to 9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed May 24, 2023
1 parent b3ec502 commit 5405125
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ message(STATUS "Configuring PROJ:")
#PROJ version information
################################################################################
include(ProjVersion)
proj_version(MAJOR 9 MINOR 2 PATCH 0)
proj_version(MAJOR 9 MINOR 2 PATCH 1)
set(PROJ_SOVERSION 25)
set(PROJ_BUILD_VERSION "${PROJ_SOVERSION}.${PROJ_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion src/proj.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ extern "C" {
/* The version numbers should be updated with every release! **/
#define PROJ_VERSION_MAJOR 9
#define PROJ_VERSION_MINOR 2
#define PROJ_VERSION_PATCH 0
#define PROJ_VERSION_PATCH 1

/* Note: the following 3 defines have been introduced in PROJ 8.0.1 */
/* Macro to compute a PROJ version number from its components */
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, 2023";
"June 1st, 2023";

const char *pj_get_release() { return pj_release; }

0 comments on commit 5405125

Please sign in to comment.