diff --git a/CMakeLists.txt b/CMakeLists.txt index ed7e5bc8a1..0933cecaf3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}") diff --git a/src/proj.h b/src/proj.h index ce5c8743d1..26a8093869 100644 --- a/src/proj.h +++ b/src/proj.h @@ -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 */ diff --git a/src/release.cpp b/src/release.cpp index 789fb6a766..2c50102543 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, 2023"; + "June 1st, 2023"; const char *pj_get_release() { return pj_release; }