Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
endrjuskr authored and unit8-bot committed Jun 18, 2020
1 parent 13e9a52 commit b82b510
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.1.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.1.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 @@ -5,4 +5,4 @@

from .timeseries import TimeSeries

__version__ = 'dev'
__version__ = '0.1.0'
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.1.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 @@ -22,7 +22,7 @@ def read_requirements(path):

setup(
name='u8darts',
version="dev",
version="0.1.0",
description='A python library for easy manipulation and forecasting time series.',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b82b510

Please sign in to comment.