File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
12
## 0.3.0 (2021-06-03)
2
13
3
14
### 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 .0} ,
6
+ version = { 0.4 .0} ,
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 .0"
14
+ version = " 0.4 .0"
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 .0"
44
+ version = " 0.4 .0"
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 .0"
26
+ __version__ = "0.4 .0"
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 .0"
33
+ assert __version__ == "0.4 .0"
34
34
35
35
36
36
###############################################################################
You can’t perform that action at this time.
0 commit comments