Skip to content

Commit da95678

Browse files
ValentinS4t1qbitalexfleury-sbJamesB-1qbitValentinS4t1qbit
authored
Catchup: develop to match main v0.4.2 (#368)
* Main to catch up with develop (#344) * Helper class and functions for iFCI fragment import (#351) * Set the instance in a Qiskit runtime job (#352) * Added trim_qubits option to Circuit.split() (#353) * Measurement Controlled operations (CMEASURE) (#334) * Fix after qiskit update: qiskit_noise_model (#354) * Bugfix: DMET fragment object initialization from IntegralSolver fixed (#355) * added explicit mo_coeff for H4_cation (#356) * VQE get_rdm performance improvements (#357) * Implementation of Frozen Natural Orbitals (FNO) (#358) * UHF reference symmetry labels. (#360) * FNO: NotImplementedError for ROHF (#362) * Iterative Quantum Phase Estimation (#359) * README minor changes + feature overview link (#363) * Add feature list (#364) (#365) --------- Co-authored-by: Valentin Senicourt <41597680+ValentinS4t1qbit@users.noreply.github.com> Co-authored-by: AlexandreF-1qbit <76115575+AlexandreF-1qbit@users.noreply.github.com> Co-authored-by: James Brown <84878946+JamesB-1qbit@users.noreply.github.com> Co-authored-by: James Brown <james.brown@1qbit.com> Co-authored-by: ValentinS4t1qbit <valentin@goodchemistry.gmail>
1 parent 239afa8 commit da95678

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
lines changed

CHANGELOG.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,55 @@
22

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

5+
## [0.4.2] - 2023-12-20
6+
7+
### Added
8+
9+
- iQPE algorithm
10+
- support for adaptive circuit with mid-measurement controlled operations
11+
- iFCI fragment import
12+
- FNO for active space selection
13+
- UHF symmetry reference labels
14+
- IBMConnection now supports target instance
15+
16+
17+
### Changed
18+
19+
- Performance improvement: VQE get_rdm
20+
- Feature: trim qubits flag for circuit.split
21+
- Bugfix: adapt to new qiskit version for noisy simulation
22+
- Bugfix: DMET fix for solvers and fragment object initialization with options
23+
- Bugfix: trim_trivial_qubits
24+
25+
26+
### Deprecated / Removed
27+
28+
29+
## [0.4.1] - 2023-10-18
30+
31+
### Added
32+
33+
- QM/MM problem decomposition
34+
- QPE framework
35+
- Truncated taylor series function returning qubits
36+
- simplify method on Circuit
37+
38+
### Changed
39+
40+
- Automated testing currently covering python 3.8, 3.9, 3.10, 3.11 (#333)
41+
- Installation: pyscf removed from requirements
42+
- Performance improvement: combinatorial mapping
43+
- Feature: ILC iteration now implements exact expansion / parameters
44+
- Feature: VQE-like algorithms verbose mode now prints and tracks energies, for users interested in the convergence of the algorithm.
45+
- Bugfix: Combinatorial mapping now handles spin != 0 (#330)
46+
- Bugfix: get_expectation_value takes into account n_shots for all backends supporting the option.
47+
- Bugfix: Fix corner case of FCI and CCSD solvers calculations (mo coefficients were occasionally recomputed differently).
48+
- Bugfix: Updates in IBMConnection to keep up with changes in qiskit-runtime.
49+
50+
51+
### Deprecated / Removed
52+
53+
554

655
## [0.4.1] - 2023-10-18
756

@@ -47,7 +96,7 @@ This file documents the main changes between versions of the code.
4796
- Bugfix: DMET with virtual space truncation threshold, as well as ecp
4897
- ADAPT now supports spin as parameter
4998

50-
### Deprecatedv / Removed
99+
### Deprecated / Removed
51100

52101
- in linq: Old translation functions, and Simulator class (use get_backend or translate_circuit instead)
53102

tangelo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
""" Define version number here. It is read in setup.py, and bumped automatically
1616
when using the new release Github action. """
17-
__version__ = "0.4.1"
17+
__version__ = "0.4.2"

0 commit comments

Comments
 (0)