From 90fba94f8682e1c3d3093f6ca4812d1fb5a3aba2 Mon Sep 17 00:00:00 2001 From: firefly-cpp Date: Mon, 6 Jun 2022 09:46:21 +0200 Subject: [PATCH 1/3] Add CHANGELOG --- CHANGELOG.md | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..889f435 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,61 @@ +# Changelog + +## [0.3.1](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.3.1) (2022-06-05) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.3...0.3.1) + +## [0.3](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.3) (2022-03-12) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.2...0.3) + +**Closed issues:** + +- python-fireflyalgorithm fails to build with Python 3.11.0a2. [\#6](https://github.com/firefly-cpp/FireflyAlgorithm/issues/6) +- fireflyalgorithm fails to build with Python 3.11 [\#4](https://github.com/firefly-cpp/FireflyAlgorithm/issues/4) + +**Merged pull requests:** + +- Add test [\#8](https://github.com/firefly-cpp/FireflyAlgorithm/pull/8) ([firefly-cpp](https://github.com/firefly-cpp)) +- Fix build error for python 3.11 [\#7](https://github.com/firefly-cpp/FireflyAlgorithm/pull/7) ([zStupan](https://github.com/zStupan)) +- Enabled python3.11 support. [\#5](https://github.com/firefly-cpp/FireflyAlgorithm/pull/5) ([zStupan](https://github.com/zStupan)) +- Update README [\#3](https://github.com/firefly-cpp/FireflyAlgorithm/pull/3) ([zStupan](https://github.com/zStupan)) + +## [0.2](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.2) (2021-09-10) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.0.5...0.2) + +## [0.0.5](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.0.5) (2021-09-10) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.0.4...0.0.5) + +**Merged pull requests:** + +- Update FA and switch to poetry [\#2](https://github.com/firefly-cpp/FireflyAlgorithm/pull/2) ([zStupan](https://github.com/zStupan)) + +## [0.0.4](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.0.4) (2021-02-03) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.0.3...0.0.4) + +## [0.0.3](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.0.3) (2021-02-03) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.0.2...0.0.3) + +## [0.0.2](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.0.2) (2021-01-19) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.0.1...0.0.2) + +**Merged pull requests:** + +- Sort optimization [\#1](https://github.com/firefly-cpp/FireflyAlgorithm/pull/1) ([lukapecnik](https://github.com/lukapecnik)) + +## [0.0.1](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.0.1) (2020-11-18) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/0.1...0.0.1) + +## [0.1](https://github.com/firefly-cpp/FireflyAlgorithm/tree/0.1) (2020-11-18) + +[Full Changelog](https://github.com/firefly-cpp/FireflyAlgorithm/compare/170394dc2648db570d75873af470157dd2c18c25...0.1) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* From 346dadd9695ef2c6efe1c0c7b3534d149d061b3d Mon Sep 17 00:00:00 2001 From: firefly-cpp Date: Mon, 6 Jun 2022 15:02:09 +0200 Subject: [PATCH 2/3] Rename project name in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a940060..fe3575d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "FireflyAlgorithm" +name = "fireflyalgorithm" version = "0.3.1" description = "Implementation of Firefly Algorithm in Python" authors = ["firefly-cpp"] From cf48b37ef9bf479093cfd78b391a6b9b889485f6 Mon Sep 17 00:00:00 2001 From: firefly-cpp Date: Tue, 12 Jul 2022 09:34:21 +0200 Subject: [PATCH 3/3] Bump version --- fireflyalgorithm/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fireflyalgorithm/__init__.py b/fireflyalgorithm/__init__.py index ad09e9d..7992490 100644 --- a/fireflyalgorithm/__init__.py +++ b/fireflyalgorithm/__init__.py @@ -2,4 +2,4 @@ __all__ = ['FireflyAlgorithm'] -__version__ = '0.3.1' +__version__ = '0.3.2' diff --git a/pyproject.toml b/pyproject.toml index fe3575d..ef08843 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fireflyalgorithm" -version = "0.3.1" +version = "0.3.2" description = "Implementation of Firefly Algorithm in Python" authors = ["firefly-cpp"] license = "MIT" pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy