Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
bump: version 0.3.1 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Feb 15, 2023
1 parent 57e846f commit 83da0b4
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cz_conventional_commits"
bump_message = "bump: version $current_version → $new_version"
version_format = "$version"
version = "0.3.1"
version = "0.4.0"
version_files = [
".cz.toml:version",
"staged_primitives/__init__.py:__version__",
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.4.0 (2023-02-15)

### Feat

- **reckoning**: add support for counts dict inputs
- **reckoning**: add support for pauli str inputs
- **reckoning**: add support for pauli phases

### Refactor

- **reckoning**: auto cast output to python core numeric types

### Perf

- **reckoning**: improve complex abs square computation runtime

## 0.3.1 (2023-02-09)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ @misc{staged_primitives
title = {Staged Primitives},
year = {2023},
publisher = {Zenodo},
version = {0.3.1},
version = {0.4.0},
doi = {10.5281/zenodo.7613387},
url = {https://doi.org/10.5281/zenodo.7613387},
}
2 changes: 1 addition & 1 deletion staged_primitives/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""Backend based primitives defining a staged computational pipeline."""

__copyright__ = "(C) Copyright IBM 2023"
__version__ = "0.3.1"
__version__ = "0.4.0"


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def test_version():
assert __version__ == "0.3.1"
assert __version__ == "0.4.0"


################################################################################
Expand Down

0 comments on commit 83da0b4

Please sign in to comment.