You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+51-16Lines changed: 51 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,33 +9,64 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
-
- Support for GitHub Actions
13
-
* Build and testing on various plaforms and compilers
14
-
* Automatic draft of new release
15
-
* Automatic publication of new release once ready
16
-
* Automatic upload of releases artifacts to PyPi and GitHub
17
-
- Use ``setuptools-scm`` for versioning
18
-
- Added ``.editorconfig` file
19
-
- Added ``pyproject.toml`` and ``setup.cfg``
20
-
- Added CHANGELOG.md
21
-
22
-
- Added backend for IonQ.
23
-
- Added support for state-dependent qubit control
24
12
- Added OpenQASMBackend to output QASM from ProjectQ circuits
25
-
- Added projectq.libs.qasm to convert QASM to ProjectQ circuits
13
+
14
+
15
+
### Changed
16
+
### Deprecated
17
+
### Fixed
18
+
### Removed
19
+
### Repository
20
+
21
+
## [0.6.1] - 2021-06-23
22
+
23
+
### Repository
24
+
25
+
- Fix GitHub workflow for publishing a new release
26
+
27
+
## [0.6.0] - 2021-06-23
28
+
29
+
### Added
30
+
31
+
- New backend for the IonQ platform
32
+
- New backend for the AWS Braket platform
33
+
- New gates for quantum math operations on quantum registers
34
+
- Support for state-dependent control qubits (ie. negatively or positively controlled gates)
35
+
36
+
### Changed
37
+
38
+
- Name of the single parameter of the `LocalOptimizer` has been changed from `m` to `cache_size` in order to better represent its actual use.
26
39
27
40
### Deprecated
28
41
29
-
- Compatibility with Python <= 3.5
42
+
- Compatibility with Python <= 3.5
43
+
-`LocalOptimizer(m=10)` should be changed into `LocalOptimizer(cache_size=10)`. Using of the old name is still possible, but is deprecated and will be removed in a future version of ProjectQ.
44
+
45
+
### Fixed
46
+
47
+
- Installation on Mac OS Big Sur
48
+
- IBM Backend issues with new API
30
49
31
50
### Removed
32
51
33
52
- Compatibility with Python 2.7
53
+
- Support for multi-qubit measurement gates has been dropped; use `All(Measure) | qureg` instead
34
54
35
55
### Repository
36
56
37
-
- Updated cibuildwheels action to v1.11.1
38
-
- Updated thomaseizinger/create-pull-request action to v1.1.0
57
+
- Use `setuptools-scm` for versioning
58
+
- Added `.editorconfig` file
59
+
- Added `pyproject.toml` and `setup.cfg`
60
+
- Added CHANGELOG.md
61
+
- Added support for GitHub Actions
62
+
- Build and testing on various plaforms and compilers
63
+
- Automatic draft of new release
64
+
- Automatic publication of new release once ready
65
+
- Automatic upload of releases artifacts to PyPi and GitHub
66
+
- Added pre-commit configuration file
67
+
68
+
- Updated cibuildwheels action to v1.11.1
69
+
- Updated thomaseizinger/create-pull-request action to v1.1.0
39
70
40
71
## [0.5.1] - 2019-02-15
41
72
@@ -74,3 +105,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
105
The ProjectQ v0.5.x release branch is the last one that is guaranteed to work with Python 2.7.x.
75
106
76
107
Future releases might introduce changes that will require Python 3.5 (Python 3.4 and earlier have already been declared deprecated at the time of this writing)
0 commit comments