diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f9633b59af..21a40fc92e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = 0.31.0 +current_version = 0.32.0 [bumpversion:file:setup.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index c178210964..6daf216402 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "0.31.0" + version: "0.32.0" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index c76020cb8d..cb0b70632e 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -10,7 +10,7 @@ from darts.timeseries import TimeSeries, concatenate -__version__ = "0.31.0" +__version__ = "0.32.0" colors = cycler( color=["black", "003DFD", "b512b8", "11a9ba", "0d780f", "f77f07", "ba0f0f"] diff --git a/docs/source/conf.py b/docs/source/conf.py index eb798536ba..d26e9f3724 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ project = "darts" copyright = f"2020 - {datetime.now().year}, Unit8 SA (Apache 2.0 License)" author = "Unit8 SA" -version = "0.31.0" +version = "0.32.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 50f87db91d..a98151193d 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read_requirements(path): setup( name="darts", - version="0.31.0", + version="0.32.0", description="A python library for easy manipulation and forecasting of time series.", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",