Skip to content

Commit 6c876ec

Browse files
committed
v0.2.5
1 parent 28d8aae commit 6c876ec

8 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ function c4_release_bump()
3333
( \
3434
set -euxo pipefail ; \
3535
ver=$(_c4_validate_ver $1) ; \
36-
tbump --non-interactive --only-patch $ver \
36+
tbump --non-interactive --only-patch $ver ; \
37+
sed 's/C[0-9]CORE_/C4CORE_/g' -i src/c4/version.hpp \
3738
)
3839
}
3940

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ project(c4core
66
include(./cmake/c4Project.cmake)
77
include(./compat.cmake)
88

9-
c4_project(VERSION 0.2.4
9+
c4_project(VERSION 0.2.5
1010
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
1111

1212
option(C4CORE_INSTALL "create install target" ON)

changelog/0.2.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [PR#149](https://github.com/biojppm/c4core/pull/149): Fix warnings from `-Wundef`

changelog/current.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
- [PR#149](https://github.com/biojppm/c4core/pull/149): Fix warnings from `-Wundef`

src/c4/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
/** @file version.hpp */
55

6-
#define C4CORE_VERSION "0.2.4"
6+
#define C4CORE_VERSION "0.2.5"
77
#define C4CORE_VERSION_MAJOR 0
88
#define C4CORE_VERSION_MINOR 2
9-
#define C4CORE_VERSION_PATCH 4
9+
#define C4CORE_VERSION_PATCH 5
1010

1111
#include <c4/export.hpp>
1212

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# github_url = "https://github.com/<user or organization>/<project>/"
33

44
[version]
5-
current = "0.2.4"
5+
current = "0.2.5"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

test/test_install/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(c4core
44
HOMEPAGE_URL "https://github.com/biojppm/c4core"
55
LANGUAGES CXX)
66
include(../../cmake/c4Project.cmake)
7-
c4_project(VERSION 0.2.4
7+
c4_project(VERSION 0.2.5
88
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
99

1010
if(C4CORE_TEST_INSTALL_PACKAGE_MODE)

test/test_singleheader/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(c4core
44
HOMEPAGE_URL "https://github.com/biojppm/c4core"
55
LANGUAGES CXX)
66
include(../../cmake/c4Project.cmake)
7-
c4_project(VERSION 0.2.4
7+
c4_project(VERSION 0.2.5
88
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
99

1010
# amalgamate c4core to get the single header

0 commit comments

Comments
 (0)