From 3e9c2e3b04ac557928404cf6b5274f2f3bd71573 Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Wed, 16 Nov 2022 11:16:43 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202022.4.0=20=E2=86=92=202022.5?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- conda.recipe/meta.yaml | 2 +- ldrb/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3602412..f115b5f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2022.4.0 +current_version = 2022.5.0 commit = True tag = True diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 1723407..84d215e 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "2022.4.0" %} +{% set version = "2022.5.0" %} package: name: ldrb diff --git a/ldrb/__init__.py b/ldrb/__init__.py index c5d2071..969cfac 100644 --- a/ldrb/__init__.py +++ b/ldrb/__init__.py @@ -12,7 +12,7 @@ from .utils import gmsh2dolfin from .utils import space_from_string -__version__ = "2022.4.0" +__version__ = "2022.5.0" __author__ = "Henrik Finsberg (henriknf@simula.no)" __all__ = [ diff --git a/setup.py b/setup.py index 9939ab2..80721aa 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -VERSION = "2022.4.0" +VERSION = "2022.5.0" # Where the magic happens: setup(