mirror of
https://github.com/biojppm/c4core.git
synced 2026-01-18 21:41:18 +01:00
v0.2.7
This commit is contained in:
@@ -6,7 +6,7 @@ project(c4core
|
|||||||
include(./cmake/c4Project.cmake)
|
include(./cmake/c4Project.cmake)
|
||||||
include(./compat.cmake)
|
include(./compat.cmake)
|
||||||
|
|
||||||
c4_project(VERSION 0.2.6
|
c4_project(VERSION 0.2.7
|
||||||
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
||||||
|
|
||||||
option(C4CORE_INSTALL "create install target" ON)
|
option(C4CORE_INSTALL "create install target" ON)
|
||||||
|
|||||||
6
changelog/0.2.7.md
Normal file
6
changelog/0.2.7.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
- enum symbols:
|
||||||
|
- remove useless `const` in return value of `c4::esyms()`
|
||||||
|
- add overload for building from ptr,len
|
||||||
|
- dump.hpp: fix implicit typing in implementation of `c4::format_dump()`
|
||||||
|
- utf.hpp: add missing C4_EXPORT to `c4::decode_code_point()`
|
||||||
|
- fix warnings with cmake 4
|
||||||
@@ -1 +0,0 @@
|
|||||||
- `c4/enum.hpp`: remove useless `const` in return value of `c4::esyms()`.
|
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
|
|
||||||
/** @file version.hpp */
|
/** @file version.hpp */
|
||||||
|
|
||||||
#define C4CORE_VERSION "0.2.6"
|
#define C4CORE_VERSION "0.2.7"
|
||||||
#define C4CORE_VERSION_MAJOR 0
|
#define C4CORE_VERSION_MAJOR 0
|
||||||
#define C4CORE_VERSION_MINOR 2
|
#define C4CORE_VERSION_MINOR 2
|
||||||
#define C4CORE_VERSION_PATCH 6
|
#define C4CORE_VERSION_PATCH 7
|
||||||
|
|
||||||
#include <c4/export.hpp>
|
#include <c4/export.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
# github_url = "https://github.com/<user or organization>/<project>/"
|
# github_url = "https://github.com/<user or organization>/<project>/"
|
||||||
|
|
||||||
[version]
|
[version]
|
||||||
current = "0.2.6"
|
current = "0.2.7"
|
||||||
|
|
||||||
# Example of a semver regexp.
|
# Example of a semver regexp.
|
||||||
# Make sure this matches current_version before
|
# Make sure this matches current_version before
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ project(c4core
|
|||||||
HOMEPAGE_URL "https://github.com/biojppm/c4core"
|
HOMEPAGE_URL "https://github.com/biojppm/c4core"
|
||||||
LANGUAGES CXX)
|
LANGUAGES CXX)
|
||||||
include(../../cmake/c4Project.cmake)
|
include(../../cmake/c4Project.cmake)
|
||||||
c4_project(VERSION 0.2.6
|
c4_project(VERSION 0.2.7
|
||||||
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
||||||
|
|
||||||
if(C4CORE_TEST_INSTALL_PACKAGE_MODE)
|
if(C4CORE_TEST_INSTALL_PACKAGE_MODE)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ project(c4core
|
|||||||
HOMEPAGE_URL "https://github.com/biojppm/c4core"
|
HOMEPAGE_URL "https://github.com/biojppm/c4core"
|
||||||
LANGUAGES CXX)
|
LANGUAGES CXX)
|
||||||
include(../../cmake/c4Project.cmake)
|
include(../../cmake/c4Project.cmake)
|
||||||
c4_project(VERSION 0.2.6
|
c4_project(VERSION 0.2.7
|
||||||
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
AUTHOR "Joao Paulo Magalhaes <dev@jpmag.me>")
|
||||||
|
|
||||||
# amalgamate c4core to get the single header
|
# amalgamate c4core to get the single header
|
||||||
|
|||||||
Reference in New Issue
Block a user