Skip to content

Commit

Permalink
Bumping version to 0.4.1a1 and updating changelog. (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis authored May 9, 2022
1 parent 584b406 commit af79595
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 18 deletions.
5 changes: 2 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.4.1a1] - 2022-05-09

- Adding pyqir-evaluator example with result stream usage. by @idavis in https://github.com/qir-alliance/pyqir/pull/97
- Support for "ret void" in the parser by @LaurentAjdnik in https://github.com/qir-alliance/pyqir/pull/113
- Add bitcode/qir conversion functions to generator by @idavis in https://github.com/qir-alliance/pyqir/pull/115

## [0.4.0a1] - 2022-04-18
Expand Down Expand Up @@ -97,7 +101,8 @@ class:

- Initial Release

[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.4.0a1...HEAD
[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.4.1a1...HEAD
[0.4.1a1]: https://github.com/qir-alliance/pyqir/compare/v0.4.0a1...v0.4.1a1
[0.4.0a1]: https://github.com/qir-alliance/pyqir/compare/v0.3.2a1...v0.4.0a1
[0.3.2a1]: https://github.com/qir-alliance/pyqir/compare/v0.3.1a1...v0.3.2a1
[0.3.1a1]: https://github.com/qir-alliance/pyqir/compare/v0.3.0a1...v0.3.1a1
Expand Down
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.4.0-alpha"
version = "0.4.1-alpha"
edition = "2018"
license = "MIT"
description = "Python based QIR Evaluation (JIT) library."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-evaluator/NOTICE-WHEEL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8953,7 +8953,7 @@ SOFTWARE.



pyqir-evaluator 0.4.0-alpha - SPDX: MIT - MIT License
pyqir-evaluator 0.4.1-alpha - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

MIT License
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.4.0a1"
version = "0.4.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.4.0-alpha"
version = "0.4.1-alpha"
edition = "2018"
license = "MIT"
description = "Python based QIR generator library."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-generator/NOTICE-WHEEL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10015,7 +10015,7 @@ SOFTWARE.



pyqir-generator 0.4.0-alpha - SPDX: MIT - MIT License
pyqir-generator 0.4.1-alpha - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

MIT License
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.4.0a1"
version = "0.4.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.4.0-alpha"
version = "0.4.1-alpha"
edition = "2018"
license = "MIT"
description = "Python based QIR parser library."
Expand Down
2 changes: 1 addition & 1 deletion pyqir-parser/NOTICE-WHEEL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5613,7 +5613,7 @@ SOFTWARE.



pyqir-parser 0.4.0-alpha - SPDX: MIT - MIT License
pyqir-parser 0.4.1-alpha - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

MIT License
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.4.0a1"
version = "0.4.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.4.0a1"
version = "0.4.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.4.0a1
version = 0.4.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.4.0a1
pyqir-evaluator >= 0.4.0a1
pyqir-parser >= 0.4.0a1
pyqir-generator >= 0.4.1a1
pyqir-evaluator >= 0.4.1a1
pyqir-parser >= 0.4.1a1

0 comments on commit af79595

Please sign in to comment.