diff --git a/CHANGELOG.md b/CHANGELOG.md index bff27c7e..dd4a1f00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # 2.0.2 -_Released 2024-xx-xx_ +_Released 2024-02-19_ ## Fixes * Fix segfault when runtime-parsing `{:[^` as a format string. + * Fix compilation of `scan_buffer.cpp` on some MSVC versions. + * Remove stray `test/` folder # 2.0.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 24852641..2e161ebe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16) project( scn - VERSION 2.0.1 + VERSION 2.0.2 DESCRIPTION "scanf for modern C++" HOMEPAGE_URL "https://scnlib.dev" LANGUAGES CXX diff --git a/docs/pages/mainpage.md b/docs/pages/mainpage.md index 0a6570ab..4f95ea07 100644 --- a/docs/pages/mainpage.md +++ b/docs/pages/mainpage.md @@ -72,7 +72,7 @@ Another option would be usage through CMake's `FetchContent` module. FetchContent_Declare( scn GIT_REPOSITORY https://github.com/eliaskosunen/scnlib - GIT_TAG v2.0.1 + GIT_TAG v2.0.2 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(scn) diff --git a/include/scn/detail/config.h b/include/scn/detail/config.h index 1bf03af1..e1c303a9 100644 --- a/include/scn/detail/config.h +++ b/include/scn/detail/config.h @@ -19,7 +19,7 @@ #include -#define SCN_VERSION SCN_COMPILER(2, 0, 1) +#define SCN_VERSION SCN_COMPILER(2, 0, 2) // SCN_USE_EXCEPTIONS // If 0, removes all `noexcept` annotations,