From 5405125a6544126b86af3f2cee53d954e4eb28b5 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Wed, 24 May 2023 20:56:15 +0200 Subject: [PATCH] Update version numbers to 9.2.1 --- CMakeLists.txt | 2 +- src/proj.h | 2 +- src/release.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }