diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7b1790c143..c03d5297db 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)|dev -current_version = 0.25.0 +current_version = 0.26.0 [bumpversion:file:setup.py] diff --git a/conda_recipe/darts/meta.yaml b/conda_recipe/darts/meta.yaml index da37ef0db4..f25c8547ab 100644 --- a/conda_recipe/darts/meta.yaml +++ b/conda_recipe/darts/meta.yaml @@ -2,7 +2,7 @@ package: name: "darts" - version: "0.25.0" + version: "0.26.0" source: # root folder, not the package diff --git a/darts/__init__.py b/darts/__init__.py index 89a075c2c9..60eff216e4 100644 --- a/darts/__init__.py +++ b/darts/__init__.py @@ -10,7 +10,7 @@ from .timeseries import TimeSeries, concatenate -__version__ = "0.25.0" +__version__ = "0.26.0" colors = cycler( color=["black", "003DFD", "b512b8", "11a9ba", "0d780f", "f77f07", "ba0f0f"] diff --git a/docs/source/conf.py b/docs/source/conf.py index a957818653..dd4017a787 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.25.0" +version = "0.26.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index aae7c4b171..fea08ee41b 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read_requirements(path): setup( name="darts", - version="0.25.0", + version="0.26.0", description="A python library for easy manipulation and forecasting of time series.", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",