Skip to content

Commit d67c3ce

Browse files
committed
bump: version 1.3.0 → 1.3.1
1 parent 7f71521 commit d67c3ce

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

.cz.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cz_conventional_commits"
33
bump_message = "bump: version $current_version → $new_version"
44
version_format = "$version"
5-
version = "1.3.0"
5+
version = "1.3.1"
66
version_files = [
77
".cz.toml:version",
88
"zne/__init__.py:__version__",

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.3.1 (2024-02-06)
2+
3+
### Refactor
4+
5+
- drop BasePrimitiveResult.experiments and BasePrimitiveResult.num_experiments (#63)
6+
17
## 1.3.0 (2024-02-05)
28

39
### Feat

CITATION.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ @misc{zne
33
title = {Zero Noise Extrapolation prototype},
44
year = {2023},
55
publisher = {Zenodo},
6-
version = {1.3.0},
6+
version = {1.3.1},
77
doi = {},
88
url = {https://github.com/qiskit-community/prototype-zne},
99
}

test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
def test_version():
19-
assert __version__ == "1.3.0"
19+
assert __version__ == "1.3.1"
2020

2121

2222
################################################################################

zne/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .zne_strategy import ZNEStrategy
2020

2121
__copyright__ = "(C) Copyright IBM 2022"
22-
__version__ = "1.3.0"
22+
__version__ = "1.3.1"
2323

2424

2525
__all__ = [

0 commit comments

Comments
 (0)