diff --git a/CHANGELOG.md b/CHANGELOG.md index 23a4381e..3aa7ab30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.0.1 + +_Released 2024-06-15_ + + * Bump `SOVERSION` to 3. (reported in #117, thanks [@xvitaly (Vitaly)](https://github.com/xvitaly)) + * Call `find_package` in CMake iff a target is not already defined (reported in #118, thanks [@ajtribick](https://github.com/ajtribick)) + * Remove `find_dependency(Threads)` from `scn-config.cmake` + ## 3.0.0 _Released 2024-06-08_ diff --git a/CMakeLists.txt b/CMakeLists.txt index bf08dab2..61f4e38b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16) project( scn - VERSION 3.0.0 + VERSION 3.0.1 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 629da236..0093a6e9 100644 --- a/docs/pages/mainpage.md +++ b/docs/pages/mainpage.md @@ -71,7 +71,7 @@ Another option would be usage through CMake's `FetchContent` module. FetchContent_Declare( scn GIT_REPOSITORY https://github.com/eliaskosunen/scnlib - GIT_TAG v3.0.0 + GIT_TAG v3.0.1 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(scn) diff --git a/include/scn/fwd.h b/include/scn/fwd.h index 00b6d7de..9b4892fc 100644 --- a/include/scn/fwd.h +++ b/include/scn/fwd.h @@ -24,7 +24,7 @@ #define SCN_COMPILER(major, minor, patch) \ ((major) * 10000000 + (minor) * 10000 + (patch)) -#define SCN_VERSION SCN_COMPILER(3, 0, 0) +#define SCN_VERSION SCN_COMPILER(3, 0, 1) ///////////////////////////////////////////////////////////////// // Library configuration