From 05f58ba74852b352ff07e2f107c8c1e5cfabb7e0 Mon Sep 17 00:00:00 2001 From: Benjamin Graedel Date: Tue, 3 May 2022 17:52:21 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- arcos4py/__init__.py | 2 +- arcos4py/plotting/__init__.py | 2 +- arcos4py/tools/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9d27e3e..750363d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = True diff --git a/arcos4py/__init__.py b/arcos4py/__init__.py index 689bc88..a1d78a3 100644 --- a/arcos4py/__init__.py +++ b/arcos4py/__init__.py @@ -6,7 +6,7 @@ __author__ = """Benjamin Graedel""" __email__ = "benjamin.graedel@unibe.ch" -__version__ = '0.1.1' +__version__ = '0.1.2' from .arcos4py import ARCOS diff --git a/arcos4py/plotting/__init__.py b/arcos4py/plotting/__init__.py index 8c76807..56e88ea 100644 --- a/arcos4py/plotting/__init__.py +++ b/arcos4py/plotting/__init__.py @@ -2,7 +2,7 @@ __author__ = """Benjamin Graedel""" __email__ = "benjamin.graedel@unibe.ch" -__version__ = '0.1.1' +__version__ = '0.1.2' from .plotting import NoodlePlot, dataPlots, plotOriginalDetrended, statsPlots diff --git a/arcos4py/tools/__init__.py b/arcos4py/tools/__init__.py index cf33685..15e0028 100644 --- a/arcos4py/tools/__init__.py +++ b/arcos4py/tools/__init__.py @@ -2,7 +2,7 @@ __author__ = """Benjamin Graedel""" __email__ = "benjamin.graedel@unibe.ch" -__version__ = '0.1.1' +__version__ = '0.1.2' from .binarize_detrend import binData from .cleandata import clipMeas, interpolation diff --git a/pyproject.toml b/pyproject.toml index 5beb7cd..ea7cef5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "arcos4py" -version = "0.1.1" +version = "0.1.2" homepage = "https://github.com/bgraedel/arcos4py" description = "A python package to detect collective spatio-temporal phenomena." authors = ["Benjamin Graedel "]