Skip to content

Commit 48bf6d9

Browse files
committed
bump: version 0.3.0a3 → 0.3.0a4
1 parent 025fc0b commit 48bf6d9

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.3.0a4 (2021-05-19)
2+
3+
### Refactor
4+
5+
- **ValidationDecorator**: remove validation_strategy setter
6+
- **platforms**: extract max_bits_per_request from QuantumBackend
7+
- **QuantumBitGenerator**: introduce BitCache interface
8+
9+
### Feat
10+
11+
- **QuantumBitGenerator**: add max_bits_per_request attribute
12+
- **QuantumBitGenerator**: add bitcache attribute
13+
- **errors**: add raise_deprecation_warning
14+
15+
### Fix
16+
17+
- **platforms**: update QuantumPlatform fetch_random_bits signature
18+
119
## 0.3.0a3 (2021-05-18)
220

321
### Feat

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.0a3},
6+
version = {0.3.0a4},
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.0a3"
14+
version = "0.3.0a4"
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.0a3"
44+
version = "0.3.0a4"
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.0a3"
26+
__version__ = "0.3.0a4"
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.0a3"
33+
assert __version__ == "0.3.0a4"
3434

3535

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

0 commit comments

Comments
 (0)