Skip to content

Commit

Permalink
Prepare v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Nov 3, 2024
1 parent e1b7fe2 commit f877beb
Show file tree
Hide file tree
Showing 4 changed files with 5 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 @@

## 4.0.0

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

### Breaking changes

Expand Down
4 changes: 2 additions & 2 deletions 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.2
VERSION 4.0.0
DESCRIPTION "scanf for modern C++"
HOMEPAGE_URL "https://scnlib.dev"
LANGUAGES CXX
Expand Down Expand Up @@ -70,7 +70,7 @@ target_link_libraries(scn PRIVATE
)
set_library_flags(scn)

set_property(TARGET scn PROPERTY SOVERSION 3)
set_property(TARGET scn PROPERTY SOVERSION 4)
add_library(scn::scn ALIAS scn)

add_library(scn_internal INTERFACE)
Expand Down
2 changes: 1 addition & 1 deletion docs/poxy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ strip_paths = ['../include', 'pages']
'SCN_MOVE(x)' = 'std::move(x)'
'SCN_FWD(x)' = 'std::forward<decltype(x)>(x)'
'SCN_DECLVAL(x)' = 'std::declval<x>()'
'SCN_BEGIN_NAMESPACE' = 'inline namespace v3 {'
'SCN_BEGIN_NAMESPACE' = 'inline namespace v4 {'
'SCN_END_NAMESPACE' = '}'
'SCN_GCC_PUSH' = ''
'SCN_GCC_IGNORE(...)' = ''
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, 2)
#define SCN_VERSION SCN_COMPILER(4, 0, 0)

/////////////////////////////////////////////////////////////////
// Library configuration
Expand Down

0 comments on commit f877beb

Please sign in to comment.