summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Lorey <git@karllorey.com>2020-09-27 13:29:34 +0200
committerKarl Lorey <git@karllorey.com>2020-09-27 13:29:34 +0200
commitcf731c61f354e3a704eb8d1ceedc22e0e6fdc6fa (patch)
treeb71884534f687423174e376369f63da27eaef4ca
parentb018d338b9e0f9830639231212aeecf4fc3c638c (diff)
Bump version: 0.0.0 → 0.1.0v0.1.0
-rw-r--r--mlscraper/__init__.py2
-rw-r--r--setup.cfg2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/mlscraper/__init__.py b/mlscraper/__init__.py
index 8db731a..904449e 100644
--- a/mlscraper/__init__.py
+++ b/mlscraper/__init__.py
@@ -1,6 +1,6 @@
__author__ = """Karl Lorey"""
__email__ = "git@karllorey.com"
-__version__ = "0.0.0"
+__version__ = "0.1.0"
import logging
import random
diff --git a/setup.cfg b/setup.cfg
index 2a59700..a044200 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.0.0
+current_version = 0.1.0
commit = True
tag = True
diff --git a/setup.py b/setup.py
index 1b340de..29284e5 100644
--- a/setup.py
+++ b/setup.py
@@ -48,6 +48,6 @@ setup(
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/lorey/mlscraper",
- version="0.0.0",
+ version="0.1.0",
zip_safe=False,
)