mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
Update version number to 2.0.0
This commit is contained in:
Vendored
+2
-2
@@ -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
|
||||
|
||||
Vendored
+1
-1
@@ -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)
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -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
|
||||
|
||||
Vendored
+3
-3
@@ -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 <limits.h>
|
||||
|
||||
Reference in New Issue
Block a user