Skip to content

Commit af9b368

Browse files
authored
Version 8.0.5 (#93)
1 parent 7b3e4a9 commit af9b368

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center" markdown=1>
22
<img src="/fuzzylite.png" alt="fuzzylite" width="10%">
3-
<h1>pyfuzzylite 8.0.4</h1>
3+
<h1>pyfuzzylite 8.0.5</h1>
44
<h2>A Fuzzy Logic Control Library in Python</h2>
55
<h3>by <a href="https://fuzzylite.com/about"><b>Juan Rada-Vilela, PhD</b></a></h3>
66

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center" markdown=1>
22
<img src="/image/fuzzylite.svg" alt="fuzzylite" width="10%">
3-
<h1>pyfuzzylite 8.0.4</h1>
3+
<h1>pyfuzzylite 8.0.5</h1>
44
<h2>A Fuzzy Logic Control Library in Python</h2>
55
<h3>by <a href="https://fuzzylite.com/about"><b>Juan Rada-Vilela, PhD</b></a></h3>
66

fuzzylite/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def version(self) -> str:
267267
Returns:
268268
version of the library
269269
"""
270-
__version__ = "8.0.4"
270+
__version__ = "8.0.5"
271271
return __version__
272272

273273

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.4"
7+
version = "8.0.5"
88
description = "a fuzzy logic control library in Python"
99
license = "Proprietary"
1010
readme = "README.md"

tests/test_library.py

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

7171
def test_library_vars(self) -> None:
7272
"""Test the library variables."""
73-
__version__ = "8.0.4"
73+
__version__ = "8.0.5"
7474
self.assertTrue("fuzzylite" == fl.__name__ == fl.information.name)
7575
self.assertTrue(__version__ == fl.__version__ == fl.information.version)
7676
self.assertTrue(

0 commit comments

Comments
 (0)