diff --git a/CHANGELOG.md b/CHANGELOG.md index ed85ff4..299b064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### ⚠️ Deprecated +## [0.4.5] - 2024-08-01 + +### 🎉 Added + +- [#28](https://github.com/Qiskit/qiskit-transpiler-service/pull/28) Enable programatic config of polling timeout + +### 🐛 Fixed + +- [#25](https://github.com/Qiskit/qiskit-transpiler-service/pull/25) Using the declared ai_layout_mode in the TranspilerService's run method +- [#26](https://github.com/Qiskit/qiskit-transpiler-service/pull/26) Updating tests about service's limits after last changes + ## [0.4.4] - 2024-07-24 ### ✏️ Changed @@ -132,4 +143,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Publishing first version 0.1.2 for the IBM Quantum Summit. [Unreleased]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.4...main +[0.4.5]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.4...0.4.5 [0.4.4]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.3...0.4.4 diff --git a/docs/conf.py b/docs/conf.py index 7c60e09..ddf7de5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = "Qiskit Transpiler Service" copyright = "2024, IBM Quantum" author = "IBM Quantum" -release = "0.4.4" +release = "0.4.5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.py b/setup.py index cbca03f..c6085d2 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( name="qiskit-transpiler-service", - version="0.4.4", + version="0.4.5", description="A library to use Qiskit Transpiler service (https://docs.quantum.ibm.com/transpile/qiskit-transpiler-service) and the AI transpiler passes (https://docs.quantum.ibm.com/transpile/ai-transpiler-passes)", long_description=README, long_description_content_type="text/markdown",