Skip to content

Commit

Permalink
Bump version to 4.0.1-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
foxik committed Sep 29, 2023
1 parent 5f8a1a4 commit 3218089
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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].
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.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
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.0
UNILIB=4.0.1-dev
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 := 4.0.0
UNILIB_VERSION := 4.0.1-dev
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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// 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: 4.0.0
// UniLib version: 4.0.1-dev
// Unicode version: 15.1.0

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

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

} // namespace unilib

0 comments on commit 3218089

Please sign in to comment.