Skip to content

Commit 585f978

Browse files
committed
Update version numbers to 9.6.2
1 parent 966dc8c commit 585f978

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ message(STATUS "Configuring PROJ:")
143143
#PROJ version information
144144
################################################################################
145145
include(ProjVersion)
146-
proj_version(MAJOR 9 MINOR 6 PATCH 1)
146+
proj_version(MAJOR 9 MINOR 6 PATCH 2)
147147
set(PROJ_SOVERSION 25)
148148
set(PROJ_BUILD_VERSION "${PROJ_SOVERSION}.${PROJ_VERSION}")
149149

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
version = "9.6"
2727

2828
# The full project version, used as the replacement for |release|
29-
release = "9.6.1"
29+
release = "9.6.2"
3030

3131
# PROJ-data version
3232
data_version = "1.22"

src/proj.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ extern "C" {
175175
/* The version numbers should be updated with every release! **/
176176
#define PROJ_VERSION_MAJOR 9
177177
#define PROJ_VERSION_MINOR 6
178-
#define PROJ_VERSION_PATCH 1
178+
#define PROJ_VERSION_PATCH 2
179179

180180
/* Note: the following 3 defines have been introduced in PROJ 8.0.1 */
181181
/* Macro to compute a PROJ version number from its components */

src/release.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
char const pj_release[] = "Rel. " STR(PROJ_VERSION_MAJOR) "." STR(
1010
PROJ_VERSION_MINOR) "." STR(PROJ_VERSION_PATCH) ", "
11-
"June 2nd, 2025";
11+
"June 4th, 2025";
1212

1313
const char *pj_get_release() { return pj_release; }

0 commit comments

Comments
 (0)