Skip to content

Commit

Permalink
Update ABI and API numbers for 9.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed Jun 7, 2022
1 parent 81a726c commit cf1c627
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ message(STATUS "Configuring PROJ:")
#PROJ version information
################################################################################
include(ProjVersion)
proj_version(MAJOR 9 MINOR 0 PATCH 0)
set(PROJ_SOVERSION 25)
proj_version(MAJOR 9 MINOR 0 PATCH 1)
set(PROJ_SOVERSION 26)
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 @@ -174,7 +174,7 @@ extern "C" {
/* The version numbers should be updated with every release! **/
#define PROJ_VERSION_MAJOR 9
#define PROJ_VERSION_MINOR 0
#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 @@ -11,7 +11,7 @@ char const pj_release[] =
STR(PROJ_VERSION_MAJOR)"."
STR(PROJ_VERSION_MINOR)"."
STR(PROJ_VERSION_PATCH)", "
"March 1st, 2022";
"June 15th, 2022";

const char *pj_get_release() {
return pj_release;
Expand Down

0 comments on commit cf1c627

Please sign in to comment.