Skip to content

Commit c924ea6

Browse files
committed
updated version to 4.1.2
1 parent dc37a38 commit c924ea6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.12)
22
project("unordered_dense"
3-
VERSION 4.1.1
3+
VERSION 4.1.2
44
DESCRIPTION "A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion"
55
HOMEPAGE_URL "https://github.com/martinus/unordered_dense")
66

include/ankerl/unordered_dense.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
///////////////////////// ankerl::unordered_dense::{map, set} /////////////////////////
22

33
// A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion.
4-
// Version 4.1.1
4+
// Version 4.1.2
55
// https://github.com/martinus/unordered_dense
66
//
77
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -32,7 +32,7 @@
3232
// see https://semver.org/spec/v2.0.0.html
3333
#define ANKERL_UNORDERED_DENSE_VERSION_MAJOR 4 // NOLINT(cppcoreguidelines-macro-usage) incompatible API changes
3434
#define ANKERL_UNORDERED_DENSE_VERSION_MINOR 1 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality
35-
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 1 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible bug fixes
35+
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 2 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible bug fixes
3636

3737
// API versioning with inline namespace, see https://www.foonathan.net/2018/11/inline-namespaces/
3838

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919

2020
project('unordered_dense', 'cpp',
21-
version: '4.1.1',
21+
version: '4.1.2',
2222
license: 'MIT',
2323
default_options : [
2424
'cpp_std=c++17',

test/unit/namespace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <doctest.h>
44

5-
namespace versioned_namespace = ankerl::unordered_dense::v4_1_1;
5+
namespace versioned_namespace = ankerl::unordered_dense::v4_1_2;
66

77
static_assert(std::is_same_v<versioned_namespace::map<int, int>, ankerl::unordered_dense::map<int, int>>);
88
static_assert(std::is_same_v<versioned_namespace::hash<int>, ankerl::unordered_dense::hash<int>>);

0 commit comments

Comments
 (0)