From 1a62a6c92865fafe6ab15d18eb891a78b3d8af8d Mon Sep 17 00:00:00 2001 From: Sadman Ahmed Shanto Date: Thu, 14 Mar 2024 22:10:32 -0700 Subject: [PATCH] Bumped version to 0.2.33 and updated release notes --- docs/conf.py | 2 +- docs/source/release_notes.rst | 11 +++++++++++ setup.py | 2 +- squadds/__init__.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b0bac032..c3a1e3d1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,7 +8,7 @@ project = 'SQuADDS' copyright = '2023, Sadman Ahmed Shanto & Eli Levenson-Falk' author = 'Sadman Ahmed Shanto' -release = "0.2.32" +release = "0.2.33" # General configuration exclude_patterns = [ diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index c0510f3e..3e7b88a1 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,17 @@ Release Notes ============= +Version 0.2.33 (2024-03-14) +-------------------------- + +* **Alpha Version 0.2.33** + +- Bug fixes in ansys_simulator code for whole device `sweep` functionality +- Added multiple helper/utility methods for ansys simulations +- Methods added to clulate chi, full dispersive shift of the cavity +- Updated `requirements.txt` and documentation +- Added method to set `GITHUB_TOKEN` + Version 0.2.32 (2024-02-02) -------------------------- diff --git a/setup.py b/setup.py index d0d3c026..83fed56f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SQuADDS', - version='0.2.32', + version='0.2.33', 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 e748762f..9ca8c2c4 100644 --- a/squadds/__init__.py +++ b/squadds/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.2.32' +__version__ = '0.2.33' __license__ = "MIT License" __copyright__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk 2023' __author__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk'