Skip to content

Commit 335e66c

Browse files
committed
bump version to 4.2.0
1 parent dc4c343 commit 335e66c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

+1-1
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.2
3+
VERSION 4.2.0
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

+3-3
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.2
4+
// Version 4.2.0
55
// https://github.com/martinus/unordered_dense
66
//
77
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -31,8 +31,8 @@
3131

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
34-
#define ANKERL_UNORDERED_DENSE_VERSION_MINOR 1 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality
35-
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 2 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible bug fixes
34+
#define ANKERL_UNORDERED_DENSE_VERSION_MINOR 2 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality
35+
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 0 // 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919

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

test/unit/namespace.cpp

+1-1
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_2;
5+
namespace versioned_namespace = ankerl::unordered_dense::v4_2_0;
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)