diff --git a/CHANGES.md b/CHANGES.md index 616bfb6..505427f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,5 @@ -Version 4.1.1-dev ------------------ +Version 4.1.1 [4 Nov 2024] +-------------------------- - Silence new Clang warning by not using comma operator in returns. diff --git a/doc/API.md b/doc/API.md index 3245afc..f56ddee 100644 --- a/doc/API.md +++ b/doc/API.md @@ -1,4 +1,4 @@ -# UniLib 4.1.1-dev +# UniLib 4.1.1 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 1c9bba6..3702de9 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.1.1-dev +UNILIB=4.1.1 UNICODE=16.0.0 all: generate.pl Makefile $(wildcard data/*.txt) $(TARGETS:%=template/%) diff --git a/unilib/Makefile.include b/unilib/Makefile.include index 3e52161..cebcf57 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.1.1-dev +UNILIB_VERSION := 4.1.1 UNILIB_UNICODE_VERSION := 16.0.0 UNILIB_OBJECTS := unicode uninorms unistrip diff --git a/unilib/unicode.cpp b/unilib/unicode.cpp index 96a8cc4..42e9313 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #include "unicode.h" diff --git a/unilib/unicode.h b/unilib/unicode.h index ce8816d..7fab4c5 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/uninorms.cpp b/unilib/uninorms.cpp index 78afff6..23d139e 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #include "uninorms.h" diff --git a/unilib/uninorms.h b/unilib/uninorms.h index ffbd00e..3ecc45f 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/unistrip.cpp b/unilib/unistrip.cpp index 968fb3d..b1ba505 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #include "unistrip.h" diff --git a/unilib/unistrip.h b/unilib/unistrip.h index 16139eb..455ddd5 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/utf.h b/unilib/utf.h index 85086d7..17a0983 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #pragma once diff --git a/unilib/version.h b/unilib/version.h index 9e69459..c10c5c4 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.1.1-dev +// UniLib version: 4.1.1 // Unicode version: 16.0.0 #pragma once @@ -42,7 +42,7 @@ std::string version::to_string() { } version version::current() { - return {4, 1, 1, "dev"}; + return {4, 1, 1, ""}; } } // namespace unilib