Skip to content

Commit 5ab37da

Browse files
committed
Bump version: 2.0.0 → 2.1.0
1 parent be26e89 commit 5ab37da

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ $ curl -X GET http://localhost:5000/service-info
141141
"running-since": 1563355369.6482198,
142142
"serving-model-name": "model.joblib",
143143
"serving-model-type": "SKLEARN_MODEL",
144-
"version-template": "2.0.0"
144+
"version-template": "2.1.0"
145145
}
146146
```
147147

docsrc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = 'lopezco'
2626

2727
# The short X.Y version
28-
version = '2.0.0'
28+
version = '2.1.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = '2.0.0'
30+
release = '2.1.0'
3131

3232

3333
# -- General configuration ---------------------------------------------------

service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from python.factory import ModelFactory
1616

1717
# Version of this APP template
18-
__version__ = '2.0.0'
18+
__version__ = '2.1.0'
1919
# Read env variables
2020
DEBUG = os.environ.get('DEBUG', True)
2121
MODEL_NAME = os.environ.get('MODEL_NAME', 'model.joblib')

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.0
2+
current_version = 2.1.0
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)