Skip to content

Commit 28d2b80

Browse files
committed
v0.2.2
1 parent f3004b8 commit 28d2b80

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

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.1
9+
c4_project(VERSION 0.2.2
1010
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
1111

1212
option(C4CORE_INSTALL "create install target" ON)

changelog/0.2.2.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
- Amalgamate: fix include of `<charconv>` (see [rapidyaml#445](https://github.com/biojppm/biojppm/pull/445)).
3+
- Add `C4_MINGW` ([PR#139](https://github.com/biojppm/c4core/pull/139))
4+
- Annotate `c4::handle_error()` with `[[noreturn]]` ([PR#137](https://github.com/biojppm/c4core/pull/137)).
5+
- Add `bool from_chars(csubstr s, fmt::overflow_checked_<T> *wrapper)`. There was already a function receiving `&wrapper`, but `*wrapper` was missing for use with generic code.
6+
- Ensure `posix_memalign()` is never called with bad alignment values ([PR#138](https://github.com/biojppm/c4core/pull/138))
7+
- Update fast_float to v6.1.1 ([PR#136](https://github.com/biojppm/c4core/pull/136))
8+
9+
10+
### Thanks
11+
12+
- @toge

changelog/current.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
2-
- Amalgamate: fix include of `<charconv>` (see [rapidyaml#445](https://github.com/biojppm/biojppm/pull/445)).
3-
- Add `C4_MINGW` ([PR#139](https://github.com/biojppm/c4core/pull/139))
4-
- Annotate `c4::handle_error()` with `[[noreturn]]` ([PR#137](https://github.com/biojppm/c4core/pull/137)).
5-
- Add `bool from_chars(csubstr s, fmt::overflow_checked_<T> *wrapper)`. There was already a function receiving `&wrapper`, but `*wrapper` was missing for use with generic code.
6-
- Ensure `posix_memalign()` is never called with bad alignment values ([PR#138](https://github.com/biojppm/c4core/pull/138))
7-
- Update fast_float to v6.1.1 ([PR#136](https://github.com/biojppm/c4core/pull/136))
8-
9-
10-
### Thanks
11-
12-
- @toge

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.1"
5+
current = "0.2.2"
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.1
7+
c4_project(VERSION 0.2.2
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.1
7+
c4_project(VERSION 0.2.2
88
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
99

1010
# amalgamate c4core to get the single header

0 commit comments

Comments
 (0)