diff --git a/CHANGES.md b/CHANGES.md index e508869..fe2fab2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,5 @@ -Version 4.0.1-dev ------------------ +Version 4.1.0 [27 Sep 2024] +--------------------------- - Update Unicode data to 16.0.0. diff --git a/doc/API.md b/doc/API.md index 58330ee..036b087 100644 --- a/doc/API.md +++ b/doc/API.md @@ -1,4 +1,4 @@ -# UniLib 4.0.1-dev +# UniLib 4.1.0 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 b8bd622..916680a 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.1-dev +UNILIB=4.1.0 UNICODE=16.0.0 all: generate.pl Makefile $(wildcard data/*.txt) $(TARGETS:%=template/%) diff --git a/unilib/Makefile.include b/unilib/Makefile.include index 09e681c..caa57c3 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.1-dev +UNILIB_VERSION := 4.1.0 UNILIB_UNICODE_VERSION := 16.0.0 UNILIB_OBJECTS := unicode uninorms unistrip diff --git a/unilib/unicode.cpp b/unilib/unicode.cpp index b203d38..3ddbf79 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #include "unicode.h" diff --git a/unilib/unicode.h b/unilib/unicode.h index ebd8b17..e9ce12e 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/uninorms.cpp b/unilib/uninorms.cpp index 5617187..2727f63 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #include "uninorms.h" diff --git a/unilib/uninorms.h b/unilib/uninorms.h index 2888d22..ea25330 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/unistrip.cpp b/unilib/unistrip.cpp index 843c855..ec2b40f 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #include "unistrip.h" diff --git a/unilib/unistrip.h b/unilib/unistrip.h index 3a58237..4898f88 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/utf.h b/unilib/utf.h index 239eb05..cba7e02 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/version.h b/unilib/version.h index 9759a70..29707db 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.1-dev +// UniLib version: 4.1.0 // Unicode version: 16.0.0 #pragma once @@ -42,7 +42,7 @@ std::string version::to_string() { } version version::current() { - return {4, 0, 1, "dev"}; + return {4, 1, 0, ""}; } } // namespace unilib