Skip to content

Commit

Permalink
Release version 4.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
foxik committed Sep 29, 2023
1 parent 2728905 commit 5f8a1a4
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.0-dev
-----------------
Version 4.0.0 [[29 Sep 2023]
----------------------------
- Increase the minimum requirements to C++ 17 [incompatible change].
- Change the namespace from `ufal::unilib` to `unilib` [incompatible change].
- Start using `std::string_view` in the API [incompatible change].
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 3.3.2-dev
# UniLib 4.0.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=3.3.2-dev
UNILIB=4.0.0
UNICODE=15.1.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 := 3.3.2-dev
UNILIB_VERSION := 4.0.0
UNILIB_UNICODE_VERSION := 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.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: 3.3.2-dev
// UniLib version: 4.0.0
// Unicode version: 15.1.0

#pragma once
Expand Down Expand Up @@ -42,7 +42,7 @@ std::string version::to_string() {
}

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

} // namespace unilib

0 comments on commit 5f8a1a4

Please sign in to comment.