Skip to content

Commit b428255

Browse files
committed
bump: version 0.3.0 → 0.4.0
1 parent 32433ba commit b428255

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.4.0 (2021-06-06)
2+
3+
### Feat
4+
5+
- **protocols**: add EntanglementProtocol
6+
7+
### Fix
8+
9+
- **QiskitBackend**: correct configuration_dict entry for max_qubits
10+
- **QuantumBitGenerator**: raise error if _refill_cache fails
11+
112
## 0.3.0 (2021-06-03)
213

314
### Refactor

QRAND.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ @software{pedro_rivero_qrand
33
title = {QRAND: A multiprotocol and multiplatform quantum random number generation framework},
44
year = 2020,
55
publisher = {Zenodo},
6-
version = {0.3.0},
6+
version = {0.4.0},
77
doi = {10.5281/zenodo.4755731},
88
url = {https://doi.org/10.5281/zenodo.4755731}
99
}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = '''
1111
name = "cz_conventional_commits"
1212
bump_message = "bump: version $current_version → $new_version"
1313
version_format = "$version"
14-
version = "0.3.0"
14+
version = "0.4.0"
1515
version_files = [
1616
"qrand/__init__.py:__version__",
1717
"tests/test_qrand.py:__version__",
@@ -41,7 +41,7 @@ line_length = 79
4141

4242
[tool.poetry]
4343
name = "qrand"
44-
version = "0.3.0"
44+
version = "0.4.0"
4545
description = "A multiprotocol and multiplatform quantum random number generation framework"
4646
readme = "README.md"
4747
homepage = "https://github.com/pedrorrivero/qrand"

qrand/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__author__ = "Pedro Rivero"
2424
__copyright__ = "Copyright (c) 2021 Pedro Rivero"
2525
__license__ = "Apache-2.0"
26-
__version__ = "0.3.0"
26+
__version__ = "0.4.0"
2727

2828
from ._qiskit_bit_generator import QiskitBitGenerator
2929
from .qrng import Qrng

tests/test_qrand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
## VERSION
3131
###############################################################################
3232
def test_version():
33-
assert __version__ == "0.3.0"
33+
assert __version__ == "0.4.0"
3434

3535

3636
###############################################################################

0 commit comments

Comments
 (0)