Skip to content

Commit

Permalink
Preparing release qiskit-transpiler-service 0.4.14 (#118)
Browse files Browse the repository at this point in the history
* Preparing release qiskit-transpiler-service 0.4.14

* Add deprecation warning informing that 0.4.14 is the last one

* Change deprecation warning message
  • Loading branch information
jesus-talavera-ibm authored Nov 12, 2024
1 parent 19b9098 commit da44045
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### 👾 Security

## [0.4.14] - 2024-11-11

### 🎉 Added

- [#104](https://github.com/Qiskit/qiskit-transpiler-service/pull/104) Use QPY as exchange format with service.

## [0.4.13] - 2024-11-07

### 🎉 Added
Expand Down Expand Up @@ -189,7 +195,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-transpiler-service/compare/0.4.13...main-qiskit-transpiler-service
[Unreleased]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.14...main-qiskit-transpiler-service
[0.4.14]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.13...0.4.14
[0.4.13]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.12...0.4.13
[0.4.12]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.11...0.4.12
[0.4.11]: https://github.com/Qiskit/qiskit-transpiler-service/compare/0.4.10...0.4.11
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# qiskit_transpiler_service

> ⚠️ The package **qiskit-transpiler-service** is deprecated. Use [qiskit-ibm-transpiler](https://pypi.org/project/qiskit-ibm-transpiler/) instead
> ⚠️ The **qiskit-transpiler-service** package is deprecated. Use [qiskit-ibm-transpiler](https://pypi.org/project/qiskit-ibm-transpiler/) instead. Version 0.4.14 will be the last one, no more fixes will be applied
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).

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
project = "Qiskit Transpiler Service"
copyright = "2024, IBM Quantum"
author = "IBM Quantum"
release = "0.4.13"
release = "0.4.14"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion qiskit_transpiler_service/transpiler_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
"""Initializes the instance."""

warn(
"The package qiskit-transpiler-service is deprecated. Use qiskit-ibm-transpiler instead",
"The qiskit-transpiler-service package is deprecated. Use qiskit-ibm-transpiler instead. Version 0.4.14 will be the last one, no more fixes will be applied",
DeprecationWarning,
stacklevel=2,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

setup(
name="qiskit-transpiler-service",
version="0.4.13",
version="0.4.14",
description="Deprecated: use qiskit-ibm-transpiler (https://pypi.org/project/qiskit-ibm-transpiler/) instead. 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",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transpiler_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def test_deprecation_warning():
assert issubclass(w[0].category, DeprecationWarning)
assert (
str(w[0].message)
== "The package qiskit-transpiler-service is deprecated. Use qiskit-ibm-transpiler instead"
== "The qiskit-transpiler-service package is deprecated. Use qiskit-ibm-transpiler instead. Version 0.4.14 will be the last one, no more fixes will be applied"
)


Expand Down

0 comments on commit da44045

Please sign in to comment.