Skip to content

Commit

Permalink
Bump develop to v0.3.0 (#127) (#128)
Browse files Browse the repository at this point in the history
* v0.3.0 into main (#127)

* Sphinx docs (#76)
* Fixing CCSDSolver.get_rdm() with frozen orbitals and energy from RDMs (#81)
* small fixes to allow initial density matrix for faster noisy sampling with cirq (#84)
* Branding (Tangelo, Good Chemistry Company) (#87)
* Name change: backendbuddy -> linq (#93)
* added multi-controls multi-targets, extra gates (#88)
* Add QMF and QCC capabilities and tests (#91)
* JKMN mapping implementation  (#95)
* added inverse function to Circuit (#78)
* added pycodestyle tests (#96)
* Circuit methods (repetition operator, equality, trim and split methods) (#101)
* Staged controlled time (#100)
* Support for name attribute in Circuit class (#110)
* Derandomized + Adaptive Classical Shadows (#111)
* added vsqs ansatz (#109)
* Staged richardson (#99)
* Majorana pool for ADAPT (#114)
* Copy gate data instead of referencing it when instantiation Circuit object (#118)
* Fixed QEMIST Cloud QPU connection ctrl-c in job_result. (#121)
* Estimate QPU cost with QEMIST Cloud API. (#120)
* Improvements for handling exp data with ClassicalShadow (#124)
* Qulacs operator build changed to fix memory leak (#122)


Co-authored-by: ValentinS4t1qbit <41597680+ValentinS4t1qbit@users.noreply.github.com>
Co-authored-by: AlexandreF-1qbit <76115575+AlexandreF-1qbit@users.noreply.github.com>
Co-authored-by: James Brown <james.brown@1qbit.com>
Co-authored-by: JamesB-1qbit <84878946+JamesB-1qbit@users.noreply.github.com>
Co-authored-by: MPCoons <84400409+MPCoons@users.noreply.github.com>
Co-authored-by: elloyd-1qbit <58313607+elloyd-1qbit@users.noreply.github.com>
Co-authored-by: KrzysztofB-1qbit <86750444+KrzysztofB-1qbit@users.noreply.github.com>
Co-authored-by: Rudi Plesch <rudi.plesch@1qbit.com>
Co-authored-by: GitHub Actions <noreply@github.com>
  • Loading branch information
9 people authored Feb 16, 2022
1 parent 32d64fe commit b5e453b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/create_release_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- name: Change version number and name
run: sed -i 's/__version__ = .*/__version__ = "${{ github.event.inputs.versionName }}"/' tangelo/_version.py
run: |
sed -i 's/__version__ = .*/__version__ = "${{ github.event.inputs.versionName }}"/' tangelo/_version.py
git commit tangelo/_version.py --message "Bumping Tangelo version number in _version.py"
- name: Update Changelog
uses: thomaseizinger/keep-a-changelog-new-release@v1
with:
Expand Down
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@

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

## [Unreleased]
## [0.3.0] - 2022-02-15

### Added


- Circuit operators and methods (repetition, equality, trim, split, stack...)
- Support for Classical Shadows ((de)randomized, adaptative)
- Sphinx documentation generator script in dev_tools
- JKMN qubit mapping
- QMF, QCC and VSQS ansatze for VQE
- Controlled-time evolution, Richardson extrapolation method

### Changed


- 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 tangelo/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

""" Version number (major.minor.patch[-label]) """
__version__ = "0.3.0-pr"
__version__ = "0.3.0"

0 comments on commit b5e453b

Please sign in to comment.