Skip to content

Commit 5684da3

Browse files
authored
pyfuzzylite 7.1.1 (#19)
* 7.1.1 * Updated README
1 parent b013338 commit 5684da3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ By: [Juan Rada-Vilela](https://www.fuzzylite.com/jcrada), Ph.D.
1313
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://opensource.org/license/gpl-3-0/) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/mit/)
1414

1515

16-
[main branch](https://github.com/fuzzylite/pyfuzzylite/tree/main)
16+
[main branch](https://github.com/fuzzylite/pyfuzzylite/tree/main)
1717
[![](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml/badge.svg?branch=main)](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml)
1818

19-
[development branch](https://github.com/fuzzylite/pyfuzzylite/tree/development)
20-
[![development](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml/badge.svg?branch=development)](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml)
19+
[development branch](https://github.com/fuzzylite/pyfuzzylite/tree/development)
20+
[![](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml/badge.svg?branch=development)](https://github.com/fuzzylite/pyfuzzylite/actions/workflows/python-package.yml)
2121

2222
***
2323

fuzzylite/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def name(self) -> str:
8585
@property
8686
def version(self) -> str:
8787
"""Return the version of the `fuzzylite` library."""
88-
__version__ = "7.1.0"
88+
__version__ = "7.1.1"
8989
return __version__
9090

9191
@property

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 = "7.1.0"
7+
version = "7.1.1"
88
description = "a fuzzy logic control library in Python"
99
readme = "README.md"
1010
keywords = ["fuzzy logic control", "soft computing", "artificial intelligence"]

tests/test_library.py

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

7070
def test_library_vars(self) -> None:
7171
"""Test the library variables."""
72-
__version__ = "7.1.0"
72+
__version__ = "7.1.1"
7373
self.assertEqual(fuzzylite.__name__, "pyfuzzylite")
7474
self.assertEqual(fuzzylite.__version__, __version__)
7575
self.assertEqual(fuzzylite.__doc__, fuzzylite.lib.summary)

0 commit comments

Comments
 (0)