diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2022-02-15 15:17:30 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2022-02-15 15:17:30 +0100 |
| commit | 28a76a619b2edc059d201f68fb7205e7b650913c (patch) | |
| tree | 01263227f23e54223640694a42e931f50f4f30f1 | |
| parent | eeeeb9c971c25e981375a3a17966cb91ea44d730 (diff) | |
| download | PROJ-28a76a619b2edc059d201f68fb7205e7b650913c.tar.gz PROJ-28a76a619b2edc059d201f68fb7205e7b650913c.zip | |
Update version numbers for 9.0.0
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | docs/source/conf.py | 4 | ||||
| -rw-r--r-- | src/proj.h | 6 | ||||
| -rw-r--r-- | src/release.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a25603a4..9bd4c1f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,7 @@ message(STATUS "Configuring PROJ:") #PROJ version information ################################################################################ include(ProjVersion) -proj_version(MAJOR 8 MINOR 2 PATCH 0) +proj_version(MAJOR 9 MINOR 0 PATCH 0) # Use libtool convention to build the CMake's VERSION and SOVERSION # See https://github.com/pvanhoof/dir-examples#cmake-in-the-cmake-example set(PROJ_LIBTOOL_CURRENT 25) diff --git a/docs/source/conf.py b/docs/source/conf.py index ee36d656..85ba01e2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -77,8 +77,8 @@ copyright = u'1983-{0}'.format(now.year) # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. -version = '8.2.0' -data_version = '1.8' +version = '9.0.0' +data_version = '1.9' # use same |release| as |version| release = version @@ -172,8 +172,8 @@ extern "C" { #endif /* The version numbers should be updated with every release! **/ -#define PROJ_VERSION_MAJOR 8 -#define PROJ_VERSION_MINOR 2 +#define PROJ_VERSION_MAJOR 9 +#define PROJ_VERSION_MINOR 0 #define PROJ_VERSION_PATCH 0 /* Note: the following 3 defines have been introduced in PROJ 8.0.1 */ @@ -454,7 +454,7 @@ void PROJ_DLL proj_context_set_sqlite3_vfs_name(PJ_CONTEXT* ctx, const char* nam typedef struct PROJ_NETWORK_HANDLE PROJ_NETWORK_HANDLE; /** Network access: open callback - * + * * Should try to read the size_to_read first bytes at the specified offset of * the file given by URL url, * and write them to buffer. *out_size_read should be updated with the actual diff --git a/src/release.cpp b/src/release.cpp index 8a5eb224..c43ec149 100644 --- a/src/release.cpp +++ b/src/release.cpp @@ -11,7 +11,7 @@ char const pj_release[] = STR(PROJ_VERSION_MAJOR)"." STR(PROJ_VERSION_MINOR)"." STR(PROJ_VERSION_PATCH)", " - "November 1st, 2021"; + "March 1st, 2022"; const char *pj_get_release() { return pj_release; |
