Skip to content

Commit ee90412

Browse files
committed
bump version to 4.8.1
1 parent 61fb2a2 commit ee90412

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ endif()
77

88
cmake_minimum_required(VERSION ${CMAKEVER})
99
project("unordered_dense"
10-
VERSION 4.8.0
10+
VERSION 4.8.1
1111
DESCRIPTION "A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion"
1212
HOMEPAGE_URL "https://github.com/martinus/unordered_dense"
1313
LANGUAGES CXX)

include/ankerl/stl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.8.0
4+
// Version 4.8.1
55
// https://github.com/martinus/unordered_dense
66
//
77
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
88
// SPDX-License-Identifier: MIT
9-
// Copyright (c) 2022-2024 Martin Leitner-Ankerl <[email protected]>
9+
// Copyright (c) 2022 Martin Leitner-Ankerl <[email protected]>
1010
//
1111
// Permission is hereby granted, free of charge, to any person obtaining a copy
1212
// of this software and associated documentation files (the "Software"), to deal

include/ankerl/unordered_dense.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.8.0
4+
// Version 4.8.1
55
// https://github.com/martinus/unordered_dense
66
//
77
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
88
// SPDX-License-Identifier: MIT
9-
// Copyright (c) 2022-2024 Martin Leitner-Ankerl <[email protected]>
9+
// Copyright (c) 2022 Martin Leitner-Ankerl <[email protected]>
1010
//
1111
// Permission is hereby granted, free of charge, to any person obtaining a copy
1212
// of this software and associated documentation files (the "Software"), to deal
@@ -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 8 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality
35-
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 0 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible bug fixes
35+
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 1 // 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.8.0',
21+
version: '4.8.1',
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
@@ -1,7 +1,7 @@
11
#include <ankerl/unordered_dense.h>
22
#include <app/doctest.h>
33

4-
namespace versioned_namespace = ankerl::unordered_dense::v4_8_0;
4+
namespace versioned_namespace = ankerl::unordered_dense::v4_8_1;
55

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

0 commit comments

Comments
 (0)