diff --git a/Cargo.lock b/Cargo.lock index a5737da0..a32b53c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -461,7 +461,7 @@ dependencies = [ [[package]] name = "pyqir" -version = "0.7.0-alpha.1" +version = "0.7.0" dependencies = [ "either", "inkwell", @@ -476,7 +476,7 @@ dependencies = [ [[package]] name = "qirlib" -version = "0.3.0" +version = "0.7.0" dependencies = [ "bitvec", "cc", diff --git a/eng/psakefile.ps1 b/eng/psakefile.ps1 index 58f97e15..fb6cd6b4 100644 --- a/eng/psakefile.ps1 +++ b/eng/psakefile.ps1 @@ -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 } } diff --git a/pyqir/Cargo.toml b/pyqir/Cargo.toml index 8c6fe0e2..3cd217f5 100644 --- a/pyqir/Cargo.toml +++ b/pyqir/Cargo.toml @@ -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." diff --git a/pyqir/NOTICE-WHEEL.txt b/pyqir/NOTICE-WHEEL.txt index f763945f..995c01bd 100644 --- a/pyqir/NOTICE-WHEEL.txt +++ b/pyqir/NOTICE-WHEEL.txt @@ -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 /* @@ -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 diff --git a/pyqir/pyproject.toml b/pyqir/pyproject.toml index 7653ac92..0023ff20 100644 --- a/pyqir/pyproject.toml +++ b/pyqir/pyproject.toml @@ -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", diff --git a/qirlib/Cargo.toml b/qirlib/Cargo.toml index b320728f..120e9210 100644 --- a/qirlib/Cargo.toml +++ b/qirlib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qirlib" -version = "0.3.0" +version = "0.7.0" edition = "2021" license = "MIT" description = "Base Profile QIR library"