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)* 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 a940060..ef08843 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "FireflyAlgorithm" -version = "0.3.1" +name = "fireflyalgorithm" +version = "0.3.2" description = "Implementation of Firefly Algorithm in Python" authors = ["firefly-cpp"] license = "MIT"