From 6fb0091a38b9e12023eaad436b4fbccec4a2c3a9 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Thu, 13 Jun 2024 11:11:59 +0200 Subject: [PATCH] Prepare 0.5.0 release (#36) --- releasenotes/notes/prepare-0.5.0-db767ecc0471424d.yaml | 6 ++++++ src/qiskit_qasm3_import/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/prepare-0.5.0-db767ecc0471424d.yaml diff --git a/releasenotes/notes/prepare-0.5.0-db767ecc0471424d.yaml b/releasenotes/notes/prepare-0.5.0-db767ecc0471424d.yaml new file mode 100644 index 0000000..e29bddb --- /dev/null +++ b/releasenotes/notes/prepare-0.5.0-db767ecc0471424d.yaml @@ -0,0 +1,6 @@ +--- +prelude: > + The 0.5.0 release makes the default importing mode less strict about + mixing floating-point and angle types in gate bodies. This is to support + Qiskit's export, which is unfortunately inconsistent with the letter of the + specification due to technical limitiations in Qiskit's internal representation. diff --git a/src/qiskit_qasm3_import/__init__.py b/src/qiskit_qasm3_import/__init__.py index b0de190..6d98ce0 100644 --- a/src/qiskit_qasm3_import/__init__.py +++ b/src/qiskit_qasm3_import/__init__.py @@ -11,7 +11,7 @@ """Basic importer for OpenQASM 3 programmes into Qiskit.""" -__version__ = "0.4.2" +__version__ = "0.5.0" __all__ = ["parse", "convert", "ConversionError"]