diff --git a/CHANGELOG.md b/CHANGELOG.md index cc387dc..6f22d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyopal/compare/v0.5.2...HEAD +[Unreleased]: https://github.com/althonos/pyopal/compare/v0.6.0...HEAD + + +## [v0.6.0] - 2024-05-08 +[v0.6.0]: https://github.com/althonos/pyopal/compare/v0.5.2...v0.6.0 + +### Changed +- Use `scoring-matrices` package to handle scoring matrices. +- Import Cython classes from `pyopal.lib` in the main `pyopal` namespace. + +### Fixed +- Patching of architecture flags of MacOS compilers. + +### Removed +- The `ScoreMatrix` class from `pyopal.lib`. ## [v0.5.2] - 2024-02-28 diff --git a/pyopal/_version.py b/pyopal/_version.py index 7225152..906d362 100644 --- a/pyopal/_version.py +++ b/pyopal/_version.py @@ -1 +1 @@ -__version__ = "0.5.2" +__version__ = "0.6.0" diff --git a/setup.py b/setup.py index 0b6d7bc..ab9cf17 100644 --- a/setup.py +++ b/setup.py @@ -540,7 +540,6 @@ def run(self): os.path.join("vendor", "opal", "src", "opal.cpp"), os.path.join("pyopal", "platform", "neon.pyx"), ], - ), ExtensionTemplate( "pyopal.platform.sse2",