Skip to content

Commit

Permalink
Prepare v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Nov 3, 2024
1 parent e913ef8 commit e937be1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Generate docs
run: |
cd docs
poxy --verbose --git-tags --min-version v2.0.0 --no-squash-patches
poxy --verbose --git-tags --min-version v2.0.0
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 4.0.1

_Released 2024-11-04_

* Fix documentation generation

## 4.0.0

_Released 2024-11-03_
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 4.0.0
VERSION 4.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 @@ -73,7 +73,7 @@ Another option would be usage through CMake's `FetchContent` module.
FetchContent_Declare(
scn
GIT_REPOSITORY https://github.com/eliaskosunen/scnlib
GIT_TAG v4.0.0
GIT_TAG v4.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(4, 0, 0)
#define SCN_VERSION SCN_COMPILER(4, 0, 1)

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

0 comments on commit e937be1

Please sign in to comment.