diff --git a/CHANGELOG.md b/CHANGELOG.md index e497bb5fd..7ecb86001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [2.1.0] - 2025-10-18 + +_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#210)._ + ### Added - 👷 Enable testing on Python 3.14 ([#705]) ([**@denialhaag**]) @@ -73,7 +77,8 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._ -[unreleased]: https://github.com/munich-quantum-toolkit/bench/compare/v2.0.1...HEAD +[unreleased]: https://github.com/munich-quantum-toolkit/bench/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/munich-quantum-toolkit/bench/releases/tag/v2.1.0 [2.0.1]: https://github.com/munich-quantum-toolkit/bench/releases/tag/v2.0.1 [2.0.0]: https://github.com/munich-quantum-toolkit/bench/releases/tag/v2.0.0 [1.1.9]: https://github.com/munich-quantum-toolkit/bench/releases/tag/v1.1.9 diff --git a/UPGRADING.md b/UPGRADING.md index 32d526a6d..c492114a5 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -4,6 +4,8 @@ This document describes breaking changes and how to upgrade. For a complete list ## [Unreleased] +## [2.1.0] + ### End of support for Python 3.9 Starting with this release, MQT Bench no longer supports Python 3.9. @@ -127,6 +129,9 @@ MQT Bench has moved to the [munich-quantum-toolkit](https://github.com/munich-qu While most links should be automatically redirected, please update any links in your code to point to the new location. All links in the documentation have been updated accordingly. -[unreleased]: https://github.com/munich-quantum-toolkit/bench/compare/v2.0.1...HEAD + + +[unreleased]: https://github.com/munich-quantum-toolkit/bench/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/munich-quantum-toolkit/bench/compare/v2.0.1...v2.1.0 [2.0.1]: https://github.com/munich-quantum-toolkit/bench/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/munich-quantum-toolkit/bench/compare/v1.1.9...v2.0.0 diff --git a/pyproject.toml b/pyproject.toml index 852ab4e1f..fdd667b60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,22 +32,23 @@ dependencies = [ "scikit-learn>=1.7.2; python_version >= '3.14'", ] - classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", - "Intended Audience :: Science/Research", - "Natural Language :: English", "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", + "Typing :: Typed", ] [dependency-groups]