Skip to content

Commit

Permalink
Release version 4.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
foxik committed Sep 26, 2024
1 parent fac4834 commit bbc3917
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Version 4.0.1-dev
-----------------
Version 4.1.0 [27 Sep 2024]
---------------------------
- Update Unicode data to 16.0.0.


Expand Down
2 changes: 1 addition & 1 deletion doc/API.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/%)
Expand Down
2 changes: 1 addition & 1 deletion unilib/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion unilib/unicode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion unilib/unicode.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion unilib/uninorms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion unilib/uninorms.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion unilib/unistrip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion unilib/unistrip.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion unilib/utf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions unilib/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -42,7 +42,7 @@ std::string version::to_string() {
}

version version::current() {
return {4, 0, 1, "dev"};
return {4, 1, 0, ""};
}

} // namespace unilib

0 comments on commit bbc3917

Please sign in to comment.