Skip to content

Commit

Permalink
Prepare v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Nov 3, 2024
1 parent 82a9920 commit 1d456d7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 3.0.2

_Released 2024-11-xx_
_Released 2024-11-03_

* Fix formatting options of user-defined types sometimes being ignored
* Fix unnecessary blocking in `scn::input`
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.1
VERSION 3.0.2
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 @@ -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 v3.0.1
GIT_TAG v3.0.2
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, 1)
#define SCN_VERSION SCN_COMPILER(3, 0, 2)

/////////////////////////////////////////////////////////////////
// Library configuration
Expand Down
1 change: 0 additions & 1 deletion scripts/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,5 @@ def write_text_file(path, text):

print('Remember to also:')
print(' - Add an entry to CHANGELOG.md')
print(' - Update `latest` symlink in gh-pages, if necessary')
print(' - Update definition of SCN_BEGIN_NAMESPACE, if necessary')
print(' - Bump SOVERSION, if necessary')

0 comments on commit 1d456d7

Please sign in to comment.