diff --git a/CHANGELOG.md b/CHANGELOG.md index 046512c..9151438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### ⚠️ Deprecated +## [0.4.4] - 2024-07-24 + +### ✏️ Changed + +- [#21](https://github.com/Qiskit/qiskit-transpiler-service/pull/21) Increasing timeout to 600s instead of 120s +- [#17](https://github.com/Qiskit/qiskit-transpiler-service/pull/17) Fix tests after update on the service + +### 🐛 Fixed + +- [#10](https://github.com/Qiskit/qiskit-transpiler-service/pull/10) Configures Logging for a Library +- [#8](https://github.com/Qiskit/qiskit-transpiler-service/pull/8) Expose service errors to users +- [#7](https://github.com/Qiskit/qiskit-transpiler-service/pull/7) Correctly parse string boolean for ai param + ## [0.4.3] - 2024-06-07 ### ✏️ Changed @@ -113,4 +126,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.3...main +[Unreleased]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.4...main +[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 83b1c20..7c60e09 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.3" +release = "0.4.4" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.py b/setup.py index e969c38..cbca03f 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( name="qiskit-transpiler-service", - version="0.4.3", + version="0.4.4", 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",