File tree Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
19
## 0.3.0a3 (2021-05-18)
2
20
3
21
### Feat
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ @software{pedro_rivero_qrand
3
3
title = { QRAND: A multiprotocol and multiplatform quantum random number generation framework} ,
4
4
year = 2020 ,
5
5
publisher = { Zenodo} ,
6
- version = { 0.3.0a3 } ,
6
+ version = { 0.3.0a4 } ,
7
7
doi = { 10.5281/zenodo.4755731} ,
8
8
url = { https://doi.org/10.5281/zenodo.4755731}
9
9
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ exclude = '''
11
11
name = " cz_conventional_commits"
12
12
bump_message = " bump: version $current_version → $new_version"
13
13
version_format = " $version"
14
- version = " 0.3.0a3 "
14
+ version = " 0.3.0a4 "
15
15
version_files = [
16
16
" qrand/__init__.py:__version__" ,
17
17
" tests/test_qrand.py:__version__" ,
@@ -41,7 +41,7 @@ line_length = 79
41
41
42
42
[tool .poetry ]
43
43
name = " qrand"
44
- version = " 0.3.0a3 "
44
+ version = " 0.3.0a4 "
45
45
description = " A multiprotocol and multiplatform quantum random number generation framework"
46
46
readme = " README.md"
47
47
homepage = " https://github.com/pedrorrivero/qrand"
Original file line number Diff line number Diff line change 23
23
__author__ = "Pedro Rivero"
24
24
__copyright__ = "Copyright (c) 2021 Pedro Rivero"
25
25
__license__ = "Apache-2.0"
26
- __version__ = "0.3.0a3 "
26
+ __version__ = "0.3.0a4 "
27
27
28
28
from ._qiskit_bit_generator import QiskitBitGenerator
29
29
from .qrng import Qrng
Original file line number Diff line number Diff line change 30
30
## VERSION
31
31
###############################################################################
32
32
def test_version ():
33
- assert __version__ == "0.3.0a3 "
33
+ assert __version__ == "0.3.0a4 "
34
34
35
35
36
36
###############################################################################
You can’t perform that action at this time.
0 commit comments