diff --git a/_metadata.py b/_metadata.py index 3284371..be52f94 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.5.0" +__extension_version__ = "0.6.0" __extension_name__ = "pytket-iqm" diff --git a/docs/changelog.rst b/docs/changelog.rst index 4854a54..987a58f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog ~~~~~~~~~ +0.6.0 (March 2023) +------------------ + +* Updated pytket version requirement to 1.13. +* Updated iqm-client version requirement to 11.8. +* New method ``IQMBackend.get_metadata()`` for reteieving metadata associated + with a ``ResultHandle``. + 0.5.0 (November 2022) --------------------- diff --git a/setup.py b/setup.py index 9c78458..4c636aa 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ license="Apache 2", packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, - install_requires=["pytket ~= 1.8", "iqm-client ~= 11.7"], + install_requires=["pytket ~= 1.13", "iqm-client ~= 11.8"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.9",