Skip to content

Commit 82919bb

Browse files
committedJan 31, 2024··
version bump
1 parent 391795f commit 82919bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.22)
22

33
project(
44
dice-template-library
5-
VERSION 1.2.0
5+
VERSION 1.3.0
66
DESCRIPTION
77
"This template library is a collection of template-oriented code that we, the Data Science Group at UPB, found pretty handy. It contains: `switch_cases` (Use runtime values in compile-time context), `integral_template_tuple` (Create a tuple-like structure that instantiates a template for a range of values), `integral_template_variant` (A wrapper type for `std::variant` guarantees to only contain variants of the form `T<IX>` and `for_{types,values,range}` (Compile time for loops for types, values or ranges))."
88
HOMEPAGE_URL "https://dice-research.org/")

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ add
8383
FetchContent_Declare(
8484
dice-template-library
8585
GIT_REPOSITORY "https://github.com/dice-group/dice-template-library.git"
86-
GIT_TAG v1.2.0
86+
GIT_TAG v1.3.0
8787
GIT_SHALLOW TRUE)
8888
8989
FetchContent_MakeAvailable(dice-template-library)
@@ -102,7 +102,7 @@ target_link_libraries(your_target
102102
### conan
103103

104104
You can use it with [conan](https://conan.io/).
105-
To do so, you need to add `dice-template-library/1.2.0` to the `[requires]` section of your conan file.
105+
To do so, you need to add `dice-template-library/1.3.0` to the `[requires]` section of your conan file.
106106

107107
## Build and Run Tests and Examples
108108

0 commit comments

Comments
 (0)
Please sign in to comment.