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.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Feb 7, 2023
1 parent f279e06 commit 0552d65
Show file tree
Hide file tree
Showing 5 changed files with 15 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.1.0"
version = "0.2.0"
version_files = [
".cz.toml:version",
"staged_primitives/__init__.py:__version__",
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.2.0 (2023-02-07)

### Feat

- **time**: add elapsed time utils
- **reckoning**: reckon observable, pauli and counts in ExpvalReckoner

### Refactor

- **reckoning**: clean loop in canonical _reckon method

## 0.1.0 (2023-02-06)

### Feat
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.1.0},
version = {0.2.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.1.0"
__version__ = "0.2.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.1.0"
assert __version__ == "0.2.0"


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

0 comments on commit 0552d65

Please sign in to comment.