Skip to content

Commit 2e13ea6

Browse files
committed
v0.2.3
1 parent 54f56e4 commit 2e13ea6

6 files changed

Lines changed: 22 additions & 22 deletions

File tree

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

1212
option(C4CORE_INSTALL "create install target" ON)

changelog/0.2.3.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- [PR#147](https://github.com/biojppm/c4core/pull/147): Add utf utilities:
2+
- `c4::first_non_bom()`
3+
- `c4::get_bom()`
4+
- `c4::skip_bom()`
5+
- [PR#148](https://github.com/biojppm/c4core/pull/148): Improvements in dump.hpp:
6+
- add traits class `c4::dump_directly<T>` to enable selection of faster path where the intermediate dump buffer is not used for strings which can be directly dumped to the sink
7+
- improve `c4::format_dump_resume()` to ensure the needed buffer size is still computed after buffer exhaustion
8+
- [PR#148](https://github.com/biojppm/c4core/pull/148): add `noexcept` to `c4::overflows`
9+
- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for mips, mipsel, mips64, mips64el CPU architectures
10+
- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for sparc, sparc64 CPU architectures
11+
- [PR#148](https://github.com/biojppm/c4core/pull/148) and [PR#12 cmake](https://github.com/biojppm/cmake/pull/12): Add support for loongarch, loongarch64 architectures
12+
- [PR#148](https://github.com/biojppm/c4core/pull/148): Improve CPU detection in armv4 and armv5
13+
- Minor improvements to doxygen documentation
14+
15+
16+
### Thanks
17+
18+
- @huajingyun01

changelog/current.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +0,0 @@
1-
- [PR#147](https://github.com/biojppm/c4core/pull/147): Add utf utilities:
2-
- `c4::first_non_bom()`
3-
- `c4::get_bom()`
4-
- `c4::skip_bom()`
5-
- [PR#148](https://github.com/biojppm/c4core/pull/148): Improvements in dump.hpp:
6-
- add traits class `c4::dump_directly<T>` to enable selection of faster path where the intermediate dump buffer is not used for strings which can be directly dumped to the sink
7-
- improve `c4::format_dump_resume()` to ensure the needed buffer size is still computed after buffer exhaustion
8-
- [PR#148](https://github.com/biojppm/c4core/pull/148): add `noexcept` to `c4::overflows`
9-
- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for mips, mipsel, mips64, mips64el CPU architectures
10-
- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for sparc, sparc64 CPU architectures
11-
- [PR#148](https://github.com/biojppm/c4core/pull/148) and [PR#12 cmake](https://github.com/biojppm/cmake/pull/12): Add support for loongarch, loongarch64 architectures
12-
- [PR#148](https://github.com/biojppm/c4core/pull/148): Improve CPU detection in armv4 and armv5
13-
- Minor improvements to doxygen documentation
14-
15-
16-
### Thanks
17-
18-
- @huajingyun01

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

1010
# amalgamate c4core to get the single header

0 commit comments

Comments
 (0)