diff --git a/.github/workflows/publish-conan-branch-package.yml b/.github/workflows/publish-conan-branch-package.yml index 259a860..8b43077 100644 --- a/.github/workflows/publish-conan-branch-package.yml +++ b/.github/workflows/publish-conan-branch-package.yml @@ -10,7 +10,7 @@ jobs: publish-release: uses: dice-group/cpp-conan-release-reusable-workflow/.github/workflows/publish-conan-branch-package.yml@main with: - public_artifactory: false + public_artifactory: true os: ubuntu-22.04 compiler: clang-14 cmake-version: 3.22.6 diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index f856517..ae225b7 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -15,7 +15,7 @@ jobs: publish-conan-branch-package: uses: dice-group/cpp-conan-release-reusable-workflow/.github/workflows/publish-release.yml@main with: - public_artifactory: false + public_artifactory: true os: ubuntu-22.04 compiler: clang-14 cmake-version: 3.22.6 diff --git a/CMakeLists.txt b/CMakeLists.txt index 166f2f5..151bc84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.18) project(dice-sparse-map - VERSION 0.2.3 + VERSION 0.2.4 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.") include(cmake/boilerplate_init.cmake)