diff --git a/CMakeLists.txt b/CMakeLists.txt index b12de7b4..78946e8c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project(c4core include(./cmake/c4Project.cmake) include(./compat.cmake) -c4_project(VERSION 0.2.2 +c4_project(VERSION 0.2.3 AUTHOR "Joao Paulo Magalhaes ") option(C4CORE_INSTALL "create install target" ON) diff --git a/changelog/0.2.3.md b/changelog/0.2.3.md new file mode 100644 index 00000000..4d0d0e88 --- /dev/null +++ b/changelog/0.2.3.md @@ -0,0 +1,18 @@ +- [PR#147](https://github.com/biojppm/c4core/pull/147): Add utf utilities: + - `c4::first_non_bom()` + - `c4::get_bom()` + - `c4::skip_bom()` +- [PR#148](https://github.com/biojppm/c4core/pull/148): Improvements in dump.hpp: + - add traits class `c4::dump_directly` to enable selection of faster path where the intermediate dump buffer is not used for strings which can be directly dumped to the sink + - improve `c4::format_dump_resume()` to ensure the needed buffer size is still computed after buffer exhaustion +- [PR#148](https://github.com/biojppm/c4core/pull/148): add `noexcept` to `c4::overflows` +- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for mips, mipsel, mips64, mips64el CPU architectures +- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for sparc, sparc64 CPU architectures +- [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 +- [PR#148](https://github.com/biojppm/c4core/pull/148): Improve CPU detection in armv4 and armv5 +- Minor improvements to doxygen documentation + + +### Thanks + +- @huajingyun01 diff --git a/changelog/current.md b/changelog/current.md index 4d0d0e88..e69de29b 100644 --- a/changelog/current.md +++ b/changelog/current.md @@ -1,18 +0,0 @@ -- [PR#147](https://github.com/biojppm/c4core/pull/147): Add utf utilities: - - `c4::first_non_bom()` - - `c4::get_bom()` - - `c4::skip_bom()` -- [PR#148](https://github.com/biojppm/c4core/pull/148): Improvements in dump.hpp: - - add traits class `c4::dump_directly` to enable selection of faster path where the intermediate dump buffer is not used for strings which can be directly dumped to the sink - - improve `c4::format_dump_resume()` to ensure the needed buffer size is still computed after buffer exhaustion -- [PR#148](https://github.com/biojppm/c4core/pull/148): add `noexcept` to `c4::overflows` -- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for mips, mipsel, mips64, mips64el CPU architectures -- [PR#148](https://github.com/biojppm/c4core/pull/148): Add support for sparc, sparc64 CPU architectures -- [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 -- [PR#148](https://github.com/biojppm/c4core/pull/148): Improve CPU detection in armv4 and armv5 -- Minor improvements to doxygen documentation - - -### Thanks - -- @huajingyun01 diff --git a/tbump.toml b/tbump.toml index 3307c892..6089ead6 100644 --- a/tbump.toml +++ b/tbump.toml @@ -2,7 +2,7 @@ # github_url = "https://github.com///" [version] -current = "0.2.2" +current = "0.2.3" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/test/test_install/CMakeLists.txt b/test/test_install/CMakeLists.txt index bb7141fd..a1d9c98e 100644 --- a/test/test_install/CMakeLists.txt +++ b/test/test_install/CMakeLists.txt @@ -4,7 +4,7 @@ project(c4core HOMEPAGE_URL "https://github.com/biojppm/c4core" LANGUAGES CXX) include(../../cmake/c4Project.cmake) -c4_project(VERSION 0.2.2 +c4_project(VERSION 0.2.3 AUTHOR "Joao Paulo Magalhaes ") if(C4CORE_TEST_INSTALL_PACKAGE_MODE) diff --git a/test/test_singleheader/CMakeLists.txt b/test/test_singleheader/CMakeLists.txt index 5b8c1db4..3d689cb3 100644 --- a/test/test_singleheader/CMakeLists.txt +++ b/test/test_singleheader/CMakeLists.txt @@ -4,7 +4,7 @@ project(c4core HOMEPAGE_URL "https://github.com/biojppm/c4core" LANGUAGES CXX) include(../../cmake/c4Project.cmake) -c4_project(VERSION 0.2.2 +c4_project(VERSION 0.2.3 AUTHOR "Joao Paulo Magalhaes ") # amalgamate c4core to get the single header