Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Feb 19, 2024
1 parent 4582610 commit f9bc96e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

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 2.0.1
VERSION 2.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 v2.0.1
GIT_TAG v2.0.2
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(scn)
Expand Down
2 changes: 1 addition & 1 deletion include/scn/detail/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <scn/detail/pp_detect.h>

#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,
Expand Down

0 comments on commit f9bc96e

Please sign in to comment.