From 16665be7c2e1c6fe6132b7bbdccd5d7af5ea4f7c Mon Sep 17 00:00:00 2001 From: pennfranc Date: Tue, 14 Jul 2020 10:47:02 +0000 Subject: [PATCH] Release 0.2.2 --- .bumpversion.cfg | 2 +- conda_recipe/darts/meta.yaml | 2 +- darts/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 42e485a978..9ef0944433 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = 0.2.1 +current_version = 0.2.2 [bumpversion:file:setup.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index 62ce669bcd..52663e297f 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "0.2.1" + version: "0.2.2" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index 07bdedd305..77a229e5be 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -5,4 +5,4 @@ from .timeseries import TimeSeries -__version__ = '0.2.1' +__version__ = '0.2.2' diff --git a/docs/source/conf.py b/docs/source/conf.py index 6aa613c0f4..1b9fc1b5a5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ project = 'darts' copyright = '2020, Unit8 SA' author = 'Unit8 SA' -version = '0.2.1' +version = '0.2.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 2b90651444..09468eed32 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read_requirements(path): setup( name='u8darts', - version="0.2.1", + version="0.2.2", description='A python library for easy manipulation and forecasting time series.', long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",