Skip to content

Commit 4b64ee3

Browse files
committed
Set version back to dev
1 parent 234d710 commit 4b64ee3

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.bumpversion.cfg

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
[bumpversion]
22
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)|dev
3-
current_version = 0.3.0
3+
current_version = dev
44

55
[bumpversion:file:setup.py]
6-
76
[bumpversion:file:darts/__init__.py]
8-
97
[bumpversion:file:conda_recipe/darts/meta.yaml]
10-
11-
[bumpversion:file:docs/source/conf.py]
8+
[bumpversion:file:docs/source/conf.py]

conda_recipe/darts/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package:
44
name: "darts"
5-
version: "0.3.0"
5+
version: "dev"
66

77
source:
88
# root folder, not the package

darts/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ModelMode(Enum):
2828
ADDITIVE = 'additive'
2929

3030

31-
__version__ = '0.3.0'
31+
__version__ = 'dev'
3232

3333
colors = cycler(color=['black', '003DFD', 'b512b8', '11a9ba', '0d780f', 'f77f07', 'ba0f0f'])
3434

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
project = 'darts'
2222
copyright = '2020, Unit8 SA'
2323
author = 'Unit8 SA'
24-
version = '0.3.0'
24+
version = 'dev'
2525

2626

2727
# -- General configuration ---------------------------------------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def read_requirements(path):
2929

3030
setup(
3131
name='u8darts',
32-
version="0.3.0",
32+
version="dev",
3333
description='A python library for easy manipulation and forecasting of time series.',
3434
long_description=LONG_DESCRIPTION,
3535
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)