From c119596941d41d92dd2866ab3733af4d7b2d60c4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 18 Mar 2024 22:04:28 +0000 Subject: [PATCH] 1.7.2 Automatically generated by python-semantic-release --- docs/CHANGELOG.md | 7 +++++++ fcmeans/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fa0d4e8..19b9580 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.7.2 (2024-03-18) + +### Fix + +* fix: fix release and publish scripts. ([`7718856`](https://github.com/omadson/fuzzy-c-means/commit/7718856ed5823b68129e28839b174b60d75239a3)) + + ## v1.7.1 (2024-03-18) ### Build diff --git a/fcmeans/__init__.py b/fcmeans/__init__.py index f8bf8dc..2ffd829 100644 --- a/fcmeans/__init__.py +++ b/fcmeans/__init__.py @@ -2,4 +2,4 @@ """fuzzy-c-means - A simple implementation of Fuzzy C-means algorithm.""" from .main import FCM -__version__ = "1.7.1" +__version__ = "1.7.2" diff --git a/pyproject.toml b/pyproject.toml index 0c96344..7bbe059 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fuzzy-c-means" -version = "1.7.1" +version = "1.7.2" description = "A simple python implementation of Fuzzy C-means algorithm." authors = ["Madson Dias "]