Skip to content

Commit 2ec7990

Browse files
committed
Update version number to 2.0.0
1 parent f358021 commit 2ec7990

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ authors:
66
orcid: https://orcid.org/0009-0005-7245-5930
77
title: "The Parallel Hashmap C++ library"
88
license: Apache-2.0
9-
version: 1.4.1
10-
date-released: 2024-10-27
9+
version: 2.0.0
10+
date-released: 2025-01-21

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
FetchContent_Declare(
99
parallel-hashmap
1010
GIT_REPOSITORY https://github.com/greg7mdp/parallel-hashmap.git
11-
GIT_TAG v1.4.1 # adjust tag/branch/commit as needed
11+
GIT_TAG v2.0.0 # adjust tag/branch/commit as needed
1212
)
1313
FetchContent_MakeAvailable(parallel-hashmap)
1414

doc/new_release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
- update version in `phmap_config.h`
2-
- update version in `CITATION.cff` and `README.md`
2+
- update version in `CITATION.cff`
33
- update version in comment on top of `CMakeLists.txt`
44
- git commit
55
- git push
6-
- create the new release on github (tag `v1.4.0` - use semantic versioning)
6+
- create the new release on github (tag `v2.0.0` - use semantic versioning)
77
- download the tar.gz from github, and use `sha256sum parallel-hashmap-1.4.0.tar.gz` on linux to get the sha256
88

99
## conan

parallel_hashmap/phmap_config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
// limitations under the License.
3535
// ---------------------------------------------------------------------------
3636

37-
#define PHMAP_VERSION_MAJOR 1
38-
#define PHMAP_VERSION_MINOR 4
39-
#define PHMAP_VERSION_PATCH 1
37+
#define PHMAP_VERSION_MAJOR 2
38+
#define PHMAP_VERSION_MINOR 0
39+
#define PHMAP_VERSION_PATCH 0
4040

4141
// Included for the __GLIBC__ macro (or similar macros on other systems).
4242
#include <limits.h>

0 commit comments

Comments
 (0)