Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMP authored and unit8-bot committed Oct 6, 2020
1 parent 81c1f99 commit 234d710
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[bumpversion]
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\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]

[bumpversion:file:docs/source/conf.py]
2 changes: 1 addition & 1 deletion conda_recipe/darts/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package:
name: "darts"
version: "dev"
version: "0.3.0"

source:
# root folder, not the package
Expand Down
2 changes: 1 addition & 1 deletion darts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
project = 'darts'
copyright = '2020, Unit8 SA'
author = 'Unit8 SA'
version = 'dev'
version = '0.3.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 234d710

Please sign in to comment.