diff --git a/docs/index.md b/docs/index.md
index e7ff175..d3f105c 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,6 +1,6 @@

-
pyfuzzylite 8.0.5
+
pyfuzzylite 8.0.6
A Fuzzy Logic Control Library in Python
diff --git a/fuzzylite/library.py b/fuzzylite/library.py
index ae80ae8..8ad87a2 100644
--- a/fuzzylite/library.py
+++ b/fuzzylite/library.py
@@ -267,7 +267,7 @@ def version(self) -> str:
Returns:
version of the library
"""
- __version__ = "8.0.5"
+ __version__ = "8.0.6"
return __version__
diff --git a/pyproject.toml b/pyproject.toml
index c7aabe0..f15ab20 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyfuzzylite"
-version = "8.0.5"
+version = "8.0.6"
description = "a fuzzy logic control library in Python"
license = "Proprietary"
readme = "README.md"
diff --git a/tests/test_library.py b/tests/test_library.py
index 34f68cc..058617e 100644
--- a/tests/test_library.py
+++ b/tests/test_library.py
@@ -70,7 +70,7 @@ def test_library_exports_dir(self) -> None:
def test_library_vars(self) -> None:
"""Test the library variables."""
- __version__ = "8.0.5"
+ __version__ = "8.0.6"
self.assertTrue("fuzzylite" == fl.__name__ == fl.information.name)
self.assertTrue(__version__ == fl.__version__ == fl.information.version)
self.assertTrue(