Skip to content

Commit

Permalink
Prepare for 0.3.1 release (#93)
Browse files Browse the repository at this point in the history
* Update version to 0.3.1
* Update changelog for v0.3.0...v0.3.1
  • Loading branch information
idavis authored Mar 24, 2022
1 parent 2a01455 commit 29d8583
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 12 deletions.
11 changes: 10 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyqir-evaluator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-evaluator/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyqir-evaluator"
version = "0.3.0a1"
version = "0.3.1a1"
requires-python = ">=3.6"

[build-system]
Expand Down
2 changes: 1 addition & 1 deletion pyqir-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-generator/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyqir-generator"
version = "0.3.0a1"
version = "0.3.1a1"
requires-python = ">=3.6"

[build-system]
Expand Down
2 changes: 1 addition & 1 deletion pyqir-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-parser/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyqir-parser"
version = "0.3.0a1"
version = "0.3.1a1"
requires-python = ">=3.6"

[build-system]
Expand Down
2 changes: 1 addition & 1 deletion pyqir/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyqir"
version = "0.3.0a1"
version = "0.3.1a1"
requires-python = ">=3.6"

[build-system]
Expand Down
8 changes: 4 additions & 4 deletions pyqir/setup.cfg
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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

0 comments on commit 29d8583

Please sign in to comment.