Skip to content

Commit

Permalink
bump: version 1.2.2 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Feb 5, 2024
1 parent 6981566 commit 943fbe3
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 = "1.2.2"
version = "1.3.0"
version_files = [
".cz.toml:version",
"zne/__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 @@
## 1.3.0 (2024-02-05)

### Feat

- **folding_amplifier**: add multi-qubit amplifier facade (#61)

### Fix

- **zne_estrategy**: update default amplifier to multi-qubit (#62)
- **extrapolation**: support zero variance inputs (#60)

## 1.2.2 (2023-12-22)

### 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{zne
title = {Zero Noise Extrapolation prototype},
year = {2023},
publisher = {Zenodo},
version = {1.2.2},
version = {1.3.0},
doi = {},
url = {https://github.com/qiskit-community/prototype-zne},
}
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


def test_version():
assert __version__ == "1.2.2"
assert __version__ == "1.3.0"


################################################################################
Expand Down
2 changes: 1 addition & 1 deletion zne/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .zne_strategy import ZNEStrategy

__copyright__ = "(C) Copyright IBM 2022"
__version__ = "1.2.2"
__version__ = "1.3.0"


__all__ = [
Expand Down

0 comments on commit 943fbe3

Please sign in to comment.