Skip to content

Commit

Permalink
Prepare v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Jun 15, 2024
1 parent 74c39b7 commit bdd6c09
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/mainpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion include/scn/fwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bdd6c09

Please sign in to comment.