Skip to content

Commit aadb341

Browse files
authored
pyfuzzylite 8.0.1 (#67)
1 parent 7f39a53 commit aadb341

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pyfuzzylite 8.0.0
1+
# pyfuzzylite 8.0.1
22

33
***
44

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pyfuzzylite 8.0.0
1+
# pyfuzzylite 8.0.1
22

33
***
44

fuzzylite/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def version(self) -> str:
272272
Returns:
273273
version of the library
274274
"""
275-
__version__ = "8.0.0"
275+
__version__ = "8.0.1"
276276
return __version__
277277

278278

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyfuzzylite"
7-
version = "8.0.0"
7+
version = "8.0.1"
88
description = "a fuzzy logic control library in Python"
99
license = "Proprietary"
1010
readme = "README.md"
@@ -45,11 +45,12 @@ classifiers = [
4545

4646
[tool.poetry_bumpversion.file."fuzzylite/library.py"]
4747
[tool.poetry_bumpversion.file."tests/test_library.py"]
48-
[tool.poetry_bumpversion.file."docs/index.md"]
48+
49+
[[tool.poetry_bumpversion.replacements]]
50+
files = ["README.md", "docs/index.md"]
4951
search = "# pyfuzzylite {current_version}"
5052
replace = "# pyfuzzylite {new_version}"
5153

52-
5354
[[tool.poetry.packages]]
5455
include = "fuzzylite"
5556

tests/test_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_library_exports_dir(self) -> None:
7676

7777
def test_library_vars(self) -> None:
7878
"""Test the library variables."""
79-
__version__ = "8.0.0"
79+
__version__ = "8.0.1"
8080
self.assertEqual(fl.__name__, "fuzzylite")
8181
self.assertEqual(fl.__version__, __version__)
8282
self.assertEqual(fl.__doc__, fl.information.description)

0 commit comments

Comments
 (0)