Skip to content

Commit 053f1bf

Browse files
authored
merge develop
2 parents 0343f5d + 83b108d commit 053f1bf

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CMakeLists.txt

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

33
project(
44
dice-template-library
5-
VERSION 1.9.0
5+
VERSION 1.9.1
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
@@ -112,7 +112,7 @@ add
112112
FetchContent_Declare(
113113
dice-template-library
114114
GIT_REPOSITORY "https://github.com/dice-group/dice-template-library.git"
115-
GIT_TAG v1.9.0
115+
GIT_TAG v1.9.1
116116
GIT_SHALLOW TRUE)
117117
118118
FetchContent_MakeAvailable(dice-template-library)
@@ -131,7 +131,7 @@ target_link_libraries(your_target
131131
### conan
132132

133133
You can use it with [conan](https://conan.io/).
134-
To do so, you need to add `dice-template-library/1.9.0` to the `[requires]` section of your conan file.
134+
To do so, you need to add `dice-template-library/1.9.1` to the `[requires]` section of your conan file.
135135

136136
## Build and Run Tests and Examples
137137

conanfile.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ class DiceTemplateLibrary(ConanFile):
1313
url = "https://github.com/dice-group/dice-template-library.git"
1414
license = "MIT"
1515
topics = "template", "template-library", "compile-time", "switch", "integral-tuple"
16-
package_type = "header-library"
16+
settings = "os", "arch", "compiler", "build_type"
1717
generators = "CMakeDeps", "CMakeToolchain"
18-
settings = "os", "compiler", "build_type", "arch"
1918
exports_sources = "include/*", "CMakeLists.txt", "cmake/*", "LICENSE"
20-
no_copy_source = True
2119
options = {
2220
"with_test_deps": [True, False],
2321
"with_svector": [True, False],

0 commit comments

Comments
 (0)