File tree 3 files changed +7
-2
lines changed 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -60,4 +60,4 @@ package: frontend
60
60
61
61
# changelog stuff
62
62
changelog :
63
- dch -D trusty -u low -i
63
+ dch -D trusty -u low -v ${PACKAGE_VERSION} -1
Original file line number Diff line number Diff line change 6
6
from setuptools import find_packages
7
7
from setuptools import setup
8
8
9
+ from tscached import VERSION
10
+
11
+
9
12
setup (
10
13
name = 'tscached' ,
11
- version = '0.1.0' ,
14
+ version = VERSION ,
12
15
13
16
description = 'Caching proxy for time series data' ,
14
17
long_description = 'Advanced caching proxy for KairosDB, using Redis as a datastore.' ,
Original file line number Diff line number Diff line change 7
7
from tscached .utils import setup_logging
8
8
9
9
10
+ VERSION = '0.1.1'
11
+
10
12
app = Flask (__name__ , static_url_path = '' , static_folder = 'kairos-web' )
11
13
12
14
# Inject our custom YAML-based config into the Flask app.
You can’t perform that action at this time.
0 commit comments