diff --git a/docs/conf.py b/docs/conf.py index d8ac1830..e62a8e09 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,7 +10,7 @@ project = 'SQuADDS' copyright = '2023, Sadman Ahmed Shanto & Eli Levenson-Falk' author = 'Sadman Ahmed Shanto' -release = "0.2.33" +release = "0.2.34" # General configuration exclude_patterns = [ @@ -139,4 +139,4 @@ html_meta = { "description": "SQuADDS: A Python package for design and simulation of superconducting quantum devices", "keywords": "qiskit, qiskit-metal, qubit, Transmon, design, ansys, hfss, KLayout, superconducting, quantum, computing, SQuADDS, IBM, CPW, Hamiltonian", -} +} \ No newline at end of file diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index a9ef30fc..89f734b2 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,34 +1,21 @@ Release Notes ============= -Version 0.2.34 (2024-05-31) +Version 0.2.34 (2024-07-04) -------------------------- * **Alpha Version 0.2.34** -**Breaking Changes** - -- `NCap` changed to `CapNInterdigitalTee` everywhere in HuggingFace and the codebase -- `select_coupler` would no longer be supported. Use `select_resonator_type` instead -- `Analyzer` object no longer requires `SQuADDS_DB()` in its constructor - -**New Features** - -- Added the option to create lambda/2 resonators -- Interpolation support for lambda/2 resonators - -**Improvements** +**Bug Fixes** -- Added `chi` as a query parameter -- Better and more intuitive API -- "hot reload" of `Analyzer` object -- Updated documentation and tutorials -- Added `release-drafter` for automated release notes +- Addressed API to only show sim data configs +- Fixed a bug in AnsysSimulator for setup_dict for qubit-cavity systems +- Fixed bugs for geometries extracted from interpolator (and utils.py) -**Bug Fixes** +**Documentation** -- Fixed major bug in Simulation Code -- various... +- Added tutorial4 files +- Added README.md, wish_list.md, and docs/source/developer/index.rst from feature-half_wave_cavity (latest) --- diff --git a/setup.py b/setup.py index 83fed56f..b29a5a16 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SQuADDS', - version='0.2.33', + version='0.2.34', packages=find_packages(), description='Our project introduces an open-source database of programmatically generated and experimentally validated superconducting quantum device designs, accessible through a user-friendly interface, significantly lowering the entry barrier for research in this field.', long_description=open('README.md').read(), diff --git a/squadds/__init__.py b/squadds/__init__.py index 9ca8c2c4..420e2206 100644 --- a/squadds/__init__.py +++ b/squadds/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.2.33' +__version__ = '0.2.34' __license__ = "MIT License" __copyright__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk 2023' __author__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk'