File tree 4 files changed +23
-5
lines changed
4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change
1
+ 2021-12-25 Hoat Le
< [email protected] >
2
+ --------------------------------------
3
+
4
+ Version: 0.15.0-b1
5
+
6
+ - Features:
7
+ * Add additional init_argument to register method #86
8
+ * Add @method decorator and handling #109
9
+
10
+ - Improvements:
11
+ * inspect.getargspec() is deprecated, use inspect.signature() or inspect.getfullargspec() #94
12
+
13
+ - Tasks:
14
+ * Bugs/fix update failed travis ci build #93
15
+ * should use github actions to run CI checks to replace travis-ci #134
16
+
17
+
1
18
2017-10-19 Hoat Le
< [email protected] >
2
19
--------------------------------------
3
20
Original file line number Diff line number Diff line change 51
51
# The short X.Y version.
52
52
version = '0.15'
53
53
# The full version, including alpha/beta/rc tags.
54
- release = '0.15.0-dev0 '
54
+ release = '0.15.0-b1 '
55
55
56
56
# The language for content autogenerated by Sphinx. Refer to documentation
57
57
# for a list of supported languages.
Original file line number Diff line number Diff line change 19
19
20
20
_py2 = sys .version_info [0 ] == 2
21
21
22
- __version__ = "0.15.0-dev0 "
22
+ __version__ = "0.15.0-b1 "
23
23
24
24
25
25
def route (rule , ** options ):
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def find_version(*file_paths):
45
45
include_package_data = True ,
46
46
platforms = 'any' ,
47
47
install_requires = [
48
- 'Flask>=0.11, !=0. 12.3 '
48
+ 'Flask>=0.12.5 '
49
49
],
50
50
classifiers = [
51
51
'Development Status :: 4 - Beta' ,
@@ -57,10 +57,11 @@ def find_version(*file_paths):
57
57
'Programming Language :: Python :: 2' ,
58
58
'Programming Language :: Python :: 2.7' ,
59
59
'Programming Language :: Python :: 3' ,
60
- 'Programming Language :: Python :: 3.3' ,
61
- 'Programming Language :: Python :: 3.4' ,
62
60
'Programming Language :: Python :: 3.5' ,
63
61
'Programming Language :: Python :: 3.6' ,
62
+ 'Programming Language :: Python :: 3.7' ,
63
+ 'Programming Language :: Python :: 3.8' ,
64
+ 'Programming Language :: Python :: 3.9' ,
64
65
'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
65
66
'Topic :: Software Development :: Libraries :: Python Modules'
66
67
],
You can’t perform that action at this time.
0 commit comments