From 83b108d38eb7a9f04d1bea9782d8576e69135deb Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:02:32 +0200 Subject: [PATCH] version bump --- CMakeLists.txt | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 74e33a6..da5d524 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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` and `for_{types,values,range}` (Compile time for loops for types, values or ranges))." HOMEPAGE_URL "https://dice-research.org/") diff --git a/README.md b/README.md index 0677a45..318489c 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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