diff --git a/CHANGELOG.md b/CHANGELOG.md index 82eac01..c5dc1e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### ⚠️ Deprecated +## [0.5.5] - 2024-10-31 + +### 🐛 Fixed + +- [#105](https://github.com/Qiskit/qiskit-ibm-transpiler/pull/105) Added fix to avoid random test errors. Check that result exists when result is success. + ## [0.5.4] - 2024-10-30 ### 🎉 Added @@ -177,7 +183,8 @@ 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-ibm-transpiler/compare/0.5.4...stable/0.5.0 +[Unreleased]: https://github.com/Qiskit/qiskit-ibm-transpiler/compare/0.5.5...stable/0.5.0 +[0.5.5]: https://github.com/Qiskit/qiskit-ibm-transpiler/compare/0.5.4...0.5.5 [0.5.4]: https://github.com/Qiskit/qiskit-ibm-transpiler/compare/0.5.3...0.5.4 [0.5.3]: https://github.com/Qiskit/qiskit-ibm-transpiler/compare/0.5.2...0.5.3 [0.5.2]: https://github.com/Qiskit/qiskit-ibm-transpiler/compare/0.5.1...0.5.2 diff --git a/docs/conf.py b/docs/conf.py index b577f90..880146f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = "Qiskit IBM Transpiler" copyright = "2024, IBM Quantum" author = "IBM Quantum" -release = "0.5.4" +release = "0.5.5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.py b/setup.py index ee1b6bd..0bf9fa1 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( name="qiskit-ibm-transpiler", - version="0.5.4", + version="0.5.5", description="A library to use Qiskit IBM Transpiler (https://docs.quantum.ibm.com/transpile/qiskit-ibm-transpiler) and the AI transpiler passes (https://docs.quantum.ibm.com/transpile/ai-transpiler-passes)", long_description=README, long_description_content_type="text/markdown",