From 735d625b8beaf7fb45e8eba3a32d14dee70c7922 Mon Sep 17 00:00:00 2001 From: Sebastian Blauth Date: Thu, 7 Mar 2024 09:38:16 +0100 Subject: [PATCH] version bump --- .zenodo.json | 4 ++-- cashocs/__init__.py | 2 +- docs/source/_static/version_switcher.json | 4 ++-- docs/source/conf.py | 2 +- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 8d5817c2..7ea1e80e 100755 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,8 +1,8 @@ { "description": "

cashocs is a computational, adjoint-based shape optimization and optimal control software.

", "license": "GPL-3.0+", - "title": "cashocs v2.1.0", - "version": "v2.1.0", + "title": "cashocs v2.1.1", + "version": "v2.1.1", "upload_type": "software", "creators": [ { diff --git a/cashocs/__init__.py b/cashocs/__init__.py index be81b99c..d9ccc189 100755 --- a/cashocs/__init__.py +++ b/cashocs/__init__.py @@ -59,7 +59,7 @@ from cashocs.nonlinear_solvers import newton_solve from cashocs.nonlinear_solvers import picard_iteration -__version__ = "2.1.0" +__version__ = "2.1.1" __citation__ = """ @Article{Blauth2021cashocs, diff --git a/docs/source/_static/version_switcher.json b/docs/source/_static/version_switcher.json index 2ed61031..cea4b3dc 100755 --- a/docs/source/_static/version_switcher.json +++ b/docs/source/_static/version_switcher.json @@ -6,8 +6,8 @@ }, { "name": "2.1 (stable)", - "version": "2.1.0", - "url": "https://cashocs.readthedocs.io/en/v2.1.0/", + "version": "2.1.1", + "url": "https://cashocs.readthedocs.io/en/v2.1.1/", "preferred": true }, { diff --git a/docs/source/conf.py b/docs/source/conf.py index 9f118047..e24ff503 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ author = "Sebastian Blauth" # The full version, including alpha/beta/rc tags -release = "2.1.0" +release = "2.1.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 6c5c7d1a..14ad4861 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "cashocs" -version = "2.1.0" +version = "2.1.1" description = "Computational Adjoint-Based Shape Optimization and Optimal Control Software" readme = "README.rst" requires-python = ">=3.8"