Skip to content

Commit

Permalink
merge develop
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h authored Aug 30, 2024
2 parents 0343f5d + 83b108d commit 053f1bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 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.24)

project(
dice-template-library
VERSION 1.9.0
VERSION 1.9.1
DESCRIPTION
"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))."
HOMEPAGE_URL "https://dice-research.org/")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ add
FetchContent_Declare(
dice-template-library
GIT_REPOSITORY "https://github.com/dice-group/dice-template-library.git"
GIT_TAG v1.9.0
GIT_TAG v1.9.1
GIT_SHALLOW TRUE)
FetchContent_MakeAvailable(dice-template-library)
Expand All @@ -131,7 +131,7 @@ target_link_libraries(your_target
### conan

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

## Build and Run Tests and Examples

Expand Down
4 changes: 1 addition & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ class DiceTemplateLibrary(ConanFile):
url = "https://github.com/dice-group/dice-template-library.git"
license = "MIT"
topics = "template", "template-library", "compile-time", "switch", "integral-tuple"
package_type = "header-library"
settings = "os", "arch", "compiler", "build_type"
generators = "CMakeDeps", "CMakeToolchain"
settings = "os", "compiler", "build_type", "arch"
exports_sources = "include/*", "CMakeLists.txt", "cmake/*", "LICENSE"
no_copy_source = True
options = {
"with_test_deps": [True, False],
"with_svector": [True, False],
Expand Down

0 comments on commit 053f1bf

Please sign in to comment.