From 32180896eb311e2b985414b7658a30b4527125d6 Mon Sep 17 00:00:00 2001 From: Milan Straka Date: Fri, 29 Sep 2023 23:57:42 +0200 Subject: [PATCH] Bump version to 4.0.1-dev. --- CHANGES.md | 4 ++++ doc/API.md | 2 +- gen/Makefile | 2 +- unilib/Makefile.include | 2 +- unilib/unicode.cpp | 2 +- unilib/unicode.h | 2 +- unilib/uninorms.cpp | 2 +- unilib/uninorms.h | 2 +- unilib/unistrip.cpp | 2 +- unilib/unistrip.h | 2 +- unilib/utf.h | 2 +- unilib/version.h | 4 ++-- 12 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 203a7a0..b60ace0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +Version 4.0.1-dev +----------------- + + Version 4.0.0 [[29 Sep 2023] ---------------------------- - Increase the minimum requirements to C++ 17 [incompatible change]. diff --git a/doc/API.md b/doc/API.md index c52f148..58330ee 100644 --- a/doc/API.md +++ b/doc/API.md @@ -1,4 +1,4 @@ -# UniLib 4.0.0 +# UniLib 4.0.1-dev The UniLib library is contained in the `unilib` namespace. It consists of several independent files, each containing a class with diff --git a/gen/Makefile b/gen/Makefile index bf06b21..4a236c9 100644 --- a/gen/Makefile +++ b/gen/Makefile @@ -8,7 +8,7 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. TARGETS=Makefile.include unicode.cpp unicode.h uninorms.cpp uninorms.h unistrip.cpp unistrip.h utf.h version.h -UNILIB=4.0.0 +UNILIB=4.0.1-dev UNICODE=15.1.0 all: generate.pl Makefile $(wildcard data/*.txt) $(TARGETS:%=template/%) diff --git a/unilib/Makefile.include b/unilib/Makefile.include index c9b4a7d..c92a404 100644 --- a/unilib/Makefile.include +++ b/unilib/Makefile.include @@ -7,7 +7,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -UNILIB_VERSION := 4.0.0 +UNILIB_VERSION := 4.0.1-dev UNILIB_UNICODE_VERSION := 15.1.0 UNILIB_OBJECTS := unicode uninorms unistrip diff --git a/unilib/unicode.cpp b/unilib/unicode.cpp index 9f6467d..2591505 100644 --- a/unilib/unicode.cpp +++ b/unilib/unicode.cpp @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #include "unicode.h" diff --git a/unilib/unicode.h b/unilib/unicode.h index 915c789..97354a9 100644 --- a/unilib/unicode.h +++ b/unilib/unicode.h @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #pragma once diff --git a/unilib/uninorms.cpp b/unilib/uninorms.cpp index 29554dd..7bf03df 100644 --- a/unilib/uninorms.cpp +++ b/unilib/uninorms.cpp @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #include "uninorms.h" diff --git a/unilib/uninorms.h b/unilib/uninorms.h index 1106ab6..25e65a2 100644 --- a/unilib/uninorms.h +++ b/unilib/uninorms.h @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #pragma once diff --git a/unilib/unistrip.cpp b/unilib/unistrip.cpp index 21fdf82..9338620 100644 --- a/unilib/unistrip.cpp +++ b/unilib/unistrip.cpp @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #include "unistrip.h" diff --git a/unilib/unistrip.h b/unilib/unistrip.h index 130660a..30a8769 100644 --- a/unilib/unistrip.h +++ b/unilib/unistrip.h @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #pragma once diff --git a/unilib/utf.h b/unilib/utf.h index 41a5315..0b79287 100644 --- a/unilib/utf.h +++ b/unilib/utf.h @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #pragma once diff --git a/unilib/version.h b/unilib/version.h index 9e591f2..a3cb8af 100644 --- a/unilib/version.h +++ b/unilib/version.h @@ -7,7 +7,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -// UniLib version: 4.0.0 +// UniLib version: 4.0.1-dev // Unicode version: 15.1.0 #pragma once @@ -42,7 +42,7 @@ std::string version::to_string() { } version version::current() { - return {4, 0, 0, ""}; + return {4, 0, 1, "dev"}; } } // namespace unilib