Skip to content

Commit cd7a223

Browse files
committed
bump version: 2.0.0
1 parent a79b552 commit cd7a223

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Then open the `statemachine.po` and translate.
5757
After translation, to get the new language working locally, you need to compile the `.po` files into `.mo` (binary format). Run:
5858

5959
```shell
60-
pybabel compile -d statemachine/locale/ -f statemachine.po
60+
pybabel compile -d statemachine/locale/ -D statemachine
6161
```
6262

6363

docs/releases/2.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# StateMachine 2.0.0
22

3-
*Not released yet*
3+
*March 5, 2023*
44

55
Welcome to StateMachine 2.0.0!
66

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-statemachine"
3-
version = "1.0.3"
3+
version = "2.0.0"
44
description = "Python Finite State Machines made easy."
55
authors = ["Fernando Macedo <[email protected]>"]
66
maintainers = [
@@ -13,6 +13,10 @@ packages = [
1313
{include = "statemachine"},
1414
{include = "statemachine/**/*.py" },
1515
]
16+
include = [
17+
{ path = "statemachine/locale/**/*.po", format = "sdist" },
18+
{ path = "statemachine/locale/**/*.mo", format = ["sdist", "wheel"] }
19+
]
1620
classifiers = [
1721
"Intended Audience :: Developers",
1822
"License :: OSI Approved :: MIT License",

statemachine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
__author__ = """Fernando Macedo"""
55
__email__ = "[email protected]"
6-
__version__ = "1.0.3"
6+
__version__ = "2.0.0"
77

88
__all__ = ["StateMachine", "State"]

statemachine/locale/en/LC_MESSAGES/statemachine.po

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# This file is distributed under the same license as the PROJECT project.
22
# Fernando Macedo <[email protected]>, 2023.
33
#
4-
#, fuzzy
54
msgid ""
65
msgstr ""
76
"Project-Id-Version: 2.0.0\n"

statemachine/locale/pt_BR/LC_MESSAGES/statemachine.po

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# This file is distributed under the same license as the PROJECT project.
22
# Fernando Macedo <[email protected]>, 2023.
33
#
4-
#, fuzzy
54
msgid ""
65
msgstr ""
76
"Project-Id-Version: 2.0.0\n"

0 commit comments

Comments
 (0)