Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bigerl committed Feb 28, 2023
1 parent 0b4d690 commit 06008be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16)

project(
dice-hash
VERSION 0.4.1
VERSION 0.4.2
DESCRIPTION "dice-hash provides a framework to generate stable hashes. It provides state-of-the-art hash functions, supports STL containers out of the box and helps you to defines stable hashes for your own structs and classes."
HOMEPAGE_URL "https://dice-group.github.io/dice-hash/")

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ add
FetchContent_Declare(
dice-hash
GIT_REPOSITORY https://github.com/dice-group/dice-hash.git
GIT_TAG 0.4.0
GIT_TAG 0.4.2
GIT_SHALLOW TRUE)
FetchContent_MakeAvailable(dice-hash)
Expand All @@ -49,7 +49,7 @@ To use it with [conan](https://conan.io/) you need to add the repository:
conan remote add dice-group https://conan.dice-research.org/artifactory/api/conan/tentris
```

To use it add `dice-hash/0.4.1` to the `[requires]` section of your conan file.
To use it add `dice-hash/0.4.2` to the `[requires]` section of your conan file.

## build and run tests

Expand Down Expand Up @@ -107,6 +107,7 @@ namespace dice::hash {
}
```
Now you can use `DiceHash` with your container.
__However__:
Your container __needs__ to have `begin`, `end` and `size` functions.
One simple example can be found [here](examples/customContainer.cpp).
Expand Down

0 comments on commit 06008be

Please sign in to comment.