From 29d8583bd3b062fc2a3db9bfa207af1c2f52d72c Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Thu, 24 Mar 2022 14:28:16 -0700 Subject: [PATCH] Prepare for 0.3.1 release (#93) * Update version to 0.3.1 * Update changelog for v0.3.0...v0.3.1 --- Changelog.md | 11 ++++++++++- pyqir-evaluator/Cargo.toml | 2 +- pyqir-evaluator/pyproject.toml | 2 +- pyqir-generator/Cargo.toml | 2 +- pyqir-generator/pyproject.toml | 2 +- pyqir-parser/Cargo.toml | 2 +- pyqir-parser/pyproject.toml | 2 +- pyqir/pyproject.toml | 2 +- pyqir/setup.cfg | 8 ++++---- 9 files changed, 21 insertions(+), 12 deletions(-) diff --git a/Changelog.md b/Changelog.md index 5c58f4ce..013d743b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [0.3.1a1] - 2022-03-24 + +- Correct a few more typos and update docs by @LaurentAjdnik in https://github.com/qir-alliance/pyqir/pull/86 +- Support external functions in generator by @samarsha in https://github.com/qir-alliance/pyqir/pull/76 +- Improve error handling for invalid external function calls by @samarsha in https://github.com/qir-alliance/pyqir/pull/89 +- Update PyPI package metadata by @idavis in https://github.com/qir-alliance/pyqir/pull/87 +- Create pyqir metapackage for PyPI by @idavis in https://github.com/qir-alliance/pyqir/pull/90 + ## [0.3.0a1] - 2022-03-14 - Adding issue template for bugs, feature requests, and GitHub releases by @bettinaheim in https://github.com/qir-alliance/pyqir/pull/66 @@ -50,7 +58,8 @@ - Initial Release -[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.3.0a1...HEAD +[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.3.1a1...HEAD +[0.3.1a1]: https://github.com/qir-alliance/pyqir/compare/v0.3.0a1...v0.3.1a1 [0.3.0a1]: https://github.com/qir-alliance/pyqir/compare/v0.2.0a1...v0.3.0a1 [0.2.0a1]: https://github.com/qir-alliance/pyqir/compare/v0.1.0a1...v0.2.0a1 [0.1.1a1]: https://github.com/qir-alliance/pyqir/compare/v0.1.0a1...v0.1.1a1 diff --git a/pyqir-evaluator/Cargo.toml b/pyqir-evaluator/Cargo.toml index 0c36a267..522f28b5 100644 --- a/pyqir-evaluator/Cargo.toml +++ b/pyqir-evaluator/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Microsoft"] name = "pyqir-evaluator" -version = "0.3.0-alpha" +version = "0.3.1-alpha" edition = "2018" license = "MIT" description = "Python based QIR Evaluation (JIT) library." diff --git a/pyqir-evaluator/pyproject.toml b/pyqir-evaluator/pyproject.toml index df5fb30d..2bd54ced 100644 --- a/pyqir-evaluator/pyproject.toml +++ b/pyqir-evaluator/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyqir-evaluator" -version = "0.3.0a1" +version = "0.3.1a1" requires-python = ">=3.6" [build-system] diff --git a/pyqir-generator/Cargo.toml b/pyqir-generator/Cargo.toml index daf14302..a4614493 100644 --- a/pyqir-generator/Cargo.toml +++ b/pyqir-generator/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Microsoft"] name = "pyqir-generator" -version = "0.3.0-alpha" +version = "0.3.1-alpha" edition = "2018" license = "MIT" description = "Python based QIR generator library." diff --git a/pyqir-generator/pyproject.toml b/pyqir-generator/pyproject.toml index c580408e..b7fa2b41 100644 --- a/pyqir-generator/pyproject.toml +++ b/pyqir-generator/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyqir-generator" -version = "0.3.0a1" +version = "0.3.1a1" requires-python = ">=3.6" [build-system] diff --git a/pyqir-parser/Cargo.toml b/pyqir-parser/Cargo.toml index b693c7c0..cd64c2d6 100644 --- a/pyqir-parser/Cargo.toml +++ b/pyqir-parser/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Microsoft"] name = "pyqir-parser" -version = "0.3.0-alpha" +version = "0.3.1-alpha" edition = "2018" license = "MIT" description = "Python based QIR parser library." diff --git a/pyqir-parser/pyproject.toml b/pyqir-parser/pyproject.toml index 180bfb25..9b31400d 100644 --- a/pyqir-parser/pyproject.toml +++ b/pyqir-parser/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyqir-parser" -version = "0.3.0a1" +version = "0.3.1a1" requires-python = ">=3.6" [build-system] diff --git a/pyqir/pyproject.toml b/pyqir/pyproject.toml index 590ecef0..c540a981 100644 --- a/pyqir/pyproject.toml +++ b/pyqir/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyqir" -version = "0.3.0a1" +version = "0.3.1a1" requires-python = ">=3.6" [build-system] diff --git a/pyqir/setup.cfg b/pyqir/setup.cfg index 25d30b3f..7170c45b 100644 --- a/pyqir/setup.cfg +++ b/pyqir/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyqir -version = 0.3.0a1 +version = 0.3.1a1 author = Microsoft license = MIT description = PyQIR - set of APIs for generating, parsing, and evaluating Quantum Intermediate Representation (QIR) @@ -27,6 +27,6 @@ classifiers = [options] python_requires = >= 3.6 install_requires = - pyqir-generator >= 0.3.0a1 - pyqir-evaluator >= 0.3.0a1 - pyqir-parser >= 0.3.0a1 + pyqir-generator >= 0.3.1a1 + pyqir-evaluator >= 0.3.1a1 + pyqir-parser >= 0.3.1a1