Skip to content

Commit

Permalink
Bump version to 0.7.0 (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
bamarsha authored Dec 6, 2022
1 parent 7a1c13f commit f91b2d0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

12 changes: 5 additions & 7 deletions eng/psakefile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,11 @@ task update-noticefiles {
# https://github.com/EmbarkStudios/cargo-about
$config = Join-Path $Root notice.toml
$template = Join-Path $Root notice.hbs
foreach ($project in @($Pyqir, $PyqirParser)) {
Invoke-LoggedCommand -workingDirectory $project {
$notice = Join-Path $project NOTICE-WHEEL.txt
cargo about generate --config $config --all-features --output-file $notice $template
$contents = Get-Content -Raw $notice
[System.Web.HttpUtility]::HtmlDecode($contents) | Out-File $notice
}
$notice = Join-Path $Pyqir NOTICE-WHEEL.txt
Invoke-LoggedCommand -workingDirectory $Pyqir {
cargo about generate --config $config --all-features --output-file $notice $template
$contents = Get-Content -Raw $notice
[System.Web.HttpUtility]::HtmlDecode($contents) | Out-File $notice
}
}

Expand Down
2 changes: 1 addition & 1 deletion pyqir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Microsoft"]
name = "pyqir"
version = "0.7.0-alpha.1"
version = "0.7.0"
edition = "2021"
license = "MIT"
description = "PyQIR parses, generates and evaluates the Quantum Intermediate Representation."
Expand Down
4 changes: 2 additions & 2 deletions pyqir/NOTICE-WHEEL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5499,7 +5499,7 @@ limitations under the License.



qirlib 0.3.0 - SPDX: MIT - MIT License
qirlib 0.7.0 - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

/*
Expand Down Expand Up @@ -5874,7 +5874,7 @@ SOFTWARE.



pyqir 0.7.0-alpha.1 - SPDX: MIT - MIT License
pyqir 0.7.0 - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

MIT License
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.7.0a1"
version = "0.7.0"
requires-python = ">= 3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down
2 changes: 1 addition & 1 deletion qirlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qirlib"
version = "0.3.0"
version = "0.7.0"
edition = "2021"
license = "MIT"
description = "Base Profile QIR library"
Expand Down

0 comments on commit f91b2d0

Please sign in to comment.