diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 900a5a83cd..9725a8232e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = 0.27.0 +current_version = 0.27.1 [bumpversion:file:setup.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index a1d0bd9bc7..caeb508ea7 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "0.27.0" + version: "0.27.1" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index 75a74a6926..0a66a0aa59 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -10,7 +10,7 @@ from .timeseries import TimeSeries, concatenate -__version__ = "0.27.0" +__version__ = "0.27.1" colors = cycler( color=["black", "003DFD", "b512b8", "11a9ba", "0d780f", "f77f07", "ba0f0f"] diff --git a/docs/source/conf.py b/docs/source/conf.py index 90038e1c92..2aa3d5ece3 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.27.0" +version = "0.27.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index faa58fd41b..c268f8fbbd 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read_requirements(path): setup( name="darts", - version="0.27.0", + version="0.27.1", description="A python library for easy manipulation and forecasting of time series.", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",