diff --git a/docs/conf.py b/docs/conf.py index 58971e7b..40b1e77f 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.35" +release = "0.2.36" # General configuration exclude_patterns = [ diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index b267172d..839cbcbe 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,16 @@ Release Notes ============= +Version 0.2.36 (2024-07-08) +-------------------------- + +* **Alpha Version 0.2.36** + +**Bug Fixes** + +- Various bugs in Ansys simulations (ones using CapNInterdigitated capacitors) have been patched + + Version 0.2.35 (2024-07-04) -------------------------- diff --git a/setup.py b/setup.py index ab4c458e..66a105c8 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SQuADDS', - version='0.2.35', + version='0.2.36', 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 02f14be1..86727ee1 100644 --- a/squadds/__init__.py +++ b/squadds/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.2.35' +__version__ = '0.2.36' __license__ = "MIT License" __copyright__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk 2023' __author__ = 'Sadman Ahmed Shanto, Eli Levenson-Falk'