Update version number to 2.0.0

This commit is contained in:
greg7mdp
2025-01-21 10:50:42 -05:00
parent f358021bcc
commit 2ec7990176
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -6,5 +6,5 @@ authors:
orcid: https://orcid.org/0009-0005-7245-5930 orcid: https://orcid.org/0009-0005-7245-5930
title: "The Parallel Hashmap C++ library" title: "The Parallel Hashmap C++ library"
license: Apache-2.0 license: Apache-2.0
version: 1.4.1 version: 2.0.0
date-released: 2024-10-27 date-released: 2025-01-21
+1 -1
View File
@@ -8,7 +8,7 @@
FetchContent_Declare( FetchContent_Declare(
parallel-hashmap parallel-hashmap
GIT_REPOSITORY https://github.com/greg7mdp/parallel-hashmap.git 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) FetchContent_MakeAvailable(parallel-hashmap)
+2 -2
View File
@@ -1,9 +1,9 @@
- update version in `phmap_config.h` - 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` - update version in comment on top of `CMakeLists.txt`
- git commit - git commit
- git push - 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 - download the tar.gz from github, and use `sha256sum parallel-hashmap-1.4.0.tar.gz` on linux to get the sha256
## conan ## conan
+3 -3
View File
@@ -34,9 +34,9 @@
// limitations under the License. // limitations under the License.
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
#define PHMAP_VERSION_MAJOR 1 #define PHMAP_VERSION_MAJOR 2
#define PHMAP_VERSION_MINOR 4 #define PHMAP_VERSION_MINOR 0
#define PHMAP_VERSION_PATCH 1 #define PHMAP_VERSION_PATCH 0
// Included for the __GLIBC__ macro (or similar macros on other systems). // Included for the __GLIBC__ macro (or similar macros on other systems).
#include <limits.h> #include <limits.h>