Skip to content

Commit

Permalink
Update docs and bump version (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis authored Aug 19, 2024
1 parent bc3a886 commit e8101f7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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.

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.10.3"
version = "0.10.4"
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 @@ -5595,7 +5595,7 @@ limitations under the License.



qirlib 0.10.3 - SPDX: MIT - MIT License
qirlib 0.10.4 - SPDX: MIT - MIT License
https://github.com/qir-alliance/pyqir

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



pyqir 0.10.3 - SPDX: MIT - MIT License
pyqir 0.10.4 - 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.10.3"
version = "0.10.4"
requires-python = ">= 3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down
4 changes: 2 additions & 2 deletions pyqir/pyqir/_native.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ class Builder:
:param Value val: Value to be converted.
:param Type ty: Target type.
:returns: The result.
:returns: The zext instruction.
"""
...

Expand All @@ -323,7 +323,7 @@ class Builder:
:param Value val: Value to be converted.
:param Type ty: Target type.
:returns: The result.
:returns: The trunc instruction.
"""
...

Expand Down
4 changes: 2 additions & 2 deletions pyqir/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ impl Builder {
///
/// :param Value val: Value to be converted.
/// :param Type ty: Target type.
/// :returns: The result.
/// :returns: The zext instruction.
/// :rtype: Value
#[pyo3(text_signature = "(self, val, ty)")]
fn zext(&self, py: Python, val: &Value, ty: &Type) -> PyResult<PyObject> {
Expand All @@ -379,7 +379,7 @@ impl Builder {
///
/// :param Value val: Value to be converted.
/// :param Type ty: Target type.
/// :returns: The result.
/// :returns: The trunc instruction.
/// :rtype: Value
#[pyo3(text_signature = "(self, val, ty)")]
fn trunc(&self, py: Python, val: &Value, ty: &Type) -> PyResult<PyObject> {
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.10.3"
version = "0.10.4"
edition = "2021"
license = "MIT"
description = "Base Profile QIR library"
Expand Down

0 comments on commit e8101f7

Please sign in to comment.