From 2ec799017610ef831f4dc29c21fb3cce7e4a19b9 Mon Sep 17 00:00:00 2001 From: greg7mdp Date: Tue, 21 Jan 2025 10:50:42 -0500 Subject: [PATCH] Update version number to `2.0.0` --- CITATION.cff | 4 ++-- CMakeLists.txt | 2 +- doc/new_release.md | 4 ++-- parallel_hashmap/phmap_config.h | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 04825ac..16edd8c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,5 +6,5 @@ authors: orcid: https://orcid.org/0009-0005-7245-5930 title: "The Parallel Hashmap C++ library" license: Apache-2.0 -version: 1.4.1 -date-released: 2024-10-27 +version: 2.0.0 +date-released: 2025-01-21 diff --git a/CMakeLists.txt b/CMakeLists.txt index df94f4b..ef0d46e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ FetchContent_Declare( parallel-hashmap GIT_REPOSITORY https://github.com/greg7mdp/parallel-hashmap.git - GIT_TAG v1.4.1 # adjust tag/branch/commit as needed + GIT_TAG v2.0.0 # adjust tag/branch/commit as needed ) FetchContent_MakeAvailable(parallel-hashmap) diff --git a/doc/new_release.md b/doc/new_release.md index 46230c6..99ff1dc 100644 --- a/doc/new_release.md +++ b/doc/new_release.md @@ -1,9 +1,9 @@ - update version in `phmap_config.h` -- update version in `CITATION.cff` and `README.md` +- update version in `CITATION.cff` - update version in comment on top of `CMakeLists.txt` - git commit - git push -- create the new release on github (tag `v1.4.0` - use semantic versioning) +- create the new release on github (tag `v2.0.0` - use semantic versioning) - download the tar.gz from github, and use `sha256sum parallel-hashmap-1.4.0.tar.gz` on linux to get the sha256 ## conan diff --git a/parallel_hashmap/phmap_config.h b/parallel_hashmap/phmap_config.h index 023158c..b2fb0b8 100644 --- a/parallel_hashmap/phmap_config.h +++ b/parallel_hashmap/phmap_config.h @@ -34,9 +34,9 @@ // limitations under the License. // --------------------------------------------------------------------------- -#define PHMAP_VERSION_MAJOR 1 -#define PHMAP_VERSION_MINOR 4 -#define PHMAP_VERSION_PATCH 1 +#define PHMAP_VERSION_MAJOR 2 +#define PHMAP_VERSION_MINOR 0 +#define PHMAP_VERSION_PATCH 0 // Included for the __GLIBC__ macro (or similar macros on other systems). #include