File tree Expand file tree Collapse file tree 5 files changed +18
-5
lines changed Expand file tree Collapse file tree 5 files changed +18
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.3.0a5 (2021-05-20)
2
+
3
+ ### Refactor
4
+
5
+ - ** platforms** : remove unnecessary type ignore tags
6
+ - ** QuantumBitGenerator** : random bitstring and uint signature
7
+ - ** HadamardProtocol** : update private API signatures
8
+ - restrict max_bits attribute to protocols
9
+
10
+ ### Feat
11
+
12
+ - ** compute_bounded_factorization** : add argument validation
13
+
1
14
## 0.3.0a4 (2021-05-19)
2
15
3
16
### Refactor
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.0a4 } ,
6
+ version = { 0.3.0a5 } ,
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.0a4 "
14
+ version = " 0.3.0a5 "
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.0a4 "
44
+ version = " 0.3.0a5 "
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.0a4 "
26
+ __version__ = "0.3.0a5 "
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.0a4 "
33
+ assert __version__ == "0.3.0a5 "
34
34
35
35
36
36
###############################################################################
You can’t perform that action at this time.
0 commit comments