Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump develop 0.3.1 #168

Merged
merged 5 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

This file documents the main changes between versions of the code.


## [0.3.1] - 2022-06-15

### Added

- Depth method for circuits, gate cancellation methods for simple optimisations
- QCC-ILC and iQCC solver
- Support for MI-FNO fragments coming from QEMIST Cloud
- ONIOM notebook
- Quantum deflation
- SA-VQE solver, SA-OO-VQE solver
- HybridOperator for speedup for QubitOperator on certain operations in stabilizer notation
- Support for symmetry in pyscf computations

### Changed

- DMET recomputes mean-field when working with atom indices, to fix bug.
- Documentation, README, CONTRIBUTIONS

### Deprecated


## [0.3.0] - 2022-02-15

### Added
Expand All @@ -18,7 +40,3 @@ This file documents the main changes between versions of the code.
- Naming (Good Chemistry, Tangelo, linq)

### Deprecated

[Unreleased]: https://github.com/goodchemistryco/Tangelo/compare/0.3.0...HEAD

[0.3.0]: https://github.com/goodchemistryco/Tangelo/compare/32d64fe9c59441f3158942c61beac031d18f3120...0.3.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])

version = '0.3.0'
version = '0.3.1'

with open('README.rst', 'r') as f:
long_description = f.read()
Expand Down