From fd60ab309f3497425ffc015ff8bfb37355c81757 Mon Sep 17 00:00:00 2001 From: pennfranc Date: Mon, 13 Jul 2020 13:46:58 +0000 Subject: [PATCH] Release 0.2.1 --- .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 cf37a92ad8..42e485a978 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = 0.2.0 +current_version = 0.2.1 [bumpversion:file:setup.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index c8566fe872..62ce669bcd 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "0.2.0" + version: "0.2.1" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index 75e21892c9..07bdedd305 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -5,4 +5,4 @@ from .timeseries import TimeSeries -__version__ = '0.2.0' +__version__ = '0.2.1' diff --git a/docs/source/conf.py b/docs/source/conf.py index 38c7cce1af..6aa613c0f4 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.0' +version = '0.2.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index beadf42098..2b90651444 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read_requirements(path): setup( name='u8darts', - version="0.2.0", + version="0.2.1", description='A python library for easy manipulation and forecasting time series.', long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",