From 234d710f8f4f5457b3893c4eae64d08a278b47e6 Mon Sep 17 00:00:00 2001 From: TheMP Date: Tue, 6 Oct 2020 11:30:57 +0000 Subject: [PATCH] Release 0.3.0 --- .bumpversion.cfg | 7 +++++-- conda_recipe/darts/meta.yaml | 2 +- darts/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 15f04ca67e..a67b9acaed 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,8 +1,11 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = dev +current_version = 0.3.0 [bumpversion:file:setup.py] + [bumpversion:file:darts/__init__.py] + [bumpversion:file:conda_recipe/darts/meta.yaml] -[bumpversion:file:docs/source/conf.py] \ No newline at end of file + +[bumpversion:file:docs/source/conf.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index 1a43d1838c..0648b590b0 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "dev" + version: "0.3.0" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index 0fad82ae46..3aa4986159 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -28,7 +28,7 @@ class ModelMode(Enum): ADDITIVE = 'additive' -__version__ = 'dev' +__version__ = '0.3.0' colors = cycler(color=['black', '003DFD', 'b512b8', '11a9ba', '0d780f', 'f77f07', 'ba0f0f']) diff --git a/docs/source/conf.py b/docs/source/conf.py index 16599f0e24..1cae2f215c 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 = 'dev' +version = '0.3.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index e9037bd981..c841d599e6 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read_requirements(path): setup( name='u8darts', - version="dev", + version="0.3.0", description='A python library for easy manipulation and forecasting of time series.', long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",