diff --git a/docs/changelog.rst b/docs/changelog.rst index 363d207..79227bf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,12 +1,13 @@ Changelog ~~~~~~~~~ -Unreleased ----------- +0.34.0 (August 2024) +-------------------- * Implement new aqt api * Fix handling of ``simplify_initial`` kwarg in ``process_circuits()``. * Updated Qiskit AQT Provider to v1.8. +* Updated pytket version requirement to 1.31. 0.33.0 (March 2024) ------------------- diff --git a/pyproject.toml b/pyproject.toml index 2f652ab..e9780d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytket-aqt" -version = "0.33.0" +version = "0.34.0" description = "Extension for pytket, providing access to AQT backends" authors = ["TKET development team "] license = "Apache 2" @@ -27,7 +27,7 @@ classifiers= [ [tool.poetry.dependencies] python = ">=3.10,<3.13" -pytket = "^1.26" +pytket = "^1.31" requests = "^2.22" types-requests = "*" pydantic = "^2.0"