From 8a2fc3c0b3bbf028acd8eb3fc31734c6e4e67ebe Mon Sep 17 00:00:00 2001 From: Sebastian Blauth Date: Wed, 19 Apr 2023 09:23:31 +0200 Subject: [PATCH] version bump --- .zenodo.json | 4 ++-- cashocs/__init__.py | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 50304b47..58c44c4e 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.0.0-dev", - "version": "v2.0.0-dev", + "title": "cashocs v2.0.0-beta0", + "version": "v2.0.0-beta0", "upload_type": "software", "creators": [ { diff --git a/cashocs/__init__.py b/cashocs/__init__.py index fafa1f0d..c0ba100c 100755 --- a/cashocs/__init__.py +++ b/cashocs/__init__.py @@ -60,7 +60,7 @@ from cashocs.nonlinear_solvers import newton_solve from cashocs.nonlinear_solvers import picard_iteration -__version__ = "2.0.0-dev" +__version__ = "2.0.0-beta0" __citation__ = """ @Article{Blauth2021cashocs, diff --git a/docs/source/conf.py b/docs/source/conf.py index b4a446e4..0515148a 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.0.0-dev" +release = "2.0.0-beta0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 45dd971a..5914564d 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "cashocs" -version = "2.0.0-dev" +version = "2.0.0-beta0" description = "Computational Adjoint-Based Shape Optimization and Optimal Control Software" readme = "README.rst" requires-python = ">=3.8"