From d61f38a933dcc788e9217758b488dfd3ae97f01c Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:08:33 +0200 Subject: [PATCH 1/2] version bump --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc97662..1d5cd86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.24) project(dice-sparse-map - VERSION 0.2.7 + VERSION 0.2.8 DESCRIPTION "C++ implementation of a memory efficient hash map and hash set based on [tsl::sparse_map](https://github.com/Tessil/sparse-map). We added support for fancy pointers.") set(POBR_VERSION 1) # Persisted Object Binary Representation Version From c6e2f516af88cd9b65a962a9365c857d1aef2c6d Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:09:28 +0200 Subject: [PATCH 2/2] Fix: version file generation in conan package (#20) --- conanfile.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index 79deb76..0303483 100644 --- a/conanfile.py +++ b/conanfile.py @@ -42,10 +42,9 @@ def layout(self): cmake_layout(self) def build(self): - if not self.conf.get("tools.build:skip_test", default=False): - cmake = CMake(self) - cmake.configure() - cmake.build() + cmake = CMake(self) + cmake.configure() + cmake.build() def package_id(self): self.info.clear()