Skip to content

Commit 63ea333

Browse files
committed
Push version to 1.0.2 for fixing a bug found by fuzzer
1 parent 9e9b43b commit 63ea333

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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("svector"
3-
VERSION 1.0.1
3+
VERSION 1.0.2
44
DESCRIPTION " Compact SVO optimized vector for C++17 or higher"
55
HOMEPAGE_URL "https://github.com/martinus/svector")
66

include/ankerl/svector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ┌─┐┬ ┬┌─┐┌─┐┌┬┐┌─┐┬─┐ Compact SVO optimized vector C++17 or higher
2-
// └─┐└┐┌┘├┤ │ │ │ │├┬┘ Version 1.0.1
2+
// └─┐└┐┌┘├┤ │ │ │ │├┬┘ Version 1.0.2
33
// └─┘ └┘ └─┘└─┘ ┴ └─┘┴└─ https://github.com/martinus/svector
44
//
55
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -30,7 +30,7 @@
3030
// see https://semver.org/spec/v2.0.0.html
3131
#define ANKERL_SVECTOR_VERSION_MAJOR 1 // incompatible API changes
3232
#define ANKERL_SVECTOR_VERSION_MINOR 0 // add functionality in a backwards compatible manner
33-
#define ANKERL_SVECTOR_VERSION_PATCH 1 // backwards compatible bug fixes
33+
#define ANKERL_SVECTOR_VERSION_PATCH 2 // backwards compatible bug fixes
3434

3535
// API versioning with inline namespace, see https://www.foonathan.net/2018/11/inline-namespaces/
3636
#define ANKERL_SVECTOR_VERSION_CONCAT1(major, minor, patch) v##major##_##minor##_##patch

meson.build

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

2020
project('svector', 'cpp',
21-
version: '1.0.1',
21+
version: '1.0.2',
2222
license: 'MIT',
2323
default_options : ['cpp_std=c++17', 'warning_level=3', 'werror=true'])
2424

0 commit comments

Comments
 (0)