File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.12)
22project ("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
Original file line number Diff line number Diff line change 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>.
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
Original file line number Diff line number Diff line change 1818#
1919
2020project (' 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
You can’t perform that action at this time.
0 commit comments