Skip to content

Commit 29a1b77

Browse files
authored
Merge pull request #101 from hoatle/tasks/#98-v0.14.2-release
Tasks/#98 v0.14.2 release
2 parents f8447e8 + ffca6d9 commit 29a1b77

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2+
2019-01-23 Hoat Le <[email protected]>
3+
--------------------------------------
4+
5+
Version: 0.14.2
6+
7+
- Improvements:
8+
+ should remove deprecated warnings of inspect.getargspec #96
9+
10+
- Bug Fixes:
11+
+ should fix travis-ci build and docs generation #97
12+
13+
14+
Details: https://github.com/teracyhq/flask-classful/milestone/12?closed=1
15+
16+
117
2017-10-19 Hoat Le <[email protected]>
218
--------------------------------------
319

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# The short X.Y version.
5252
version = '0.14'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '0.14.2-dev0'
54+
release = '0.14.2'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

flask_classful.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
_py2 = sys.version_info[0] == 2
2121

22-
__version__ = "0.14.2-dev0"
22+
__version__ = "0.14.2"
2323

2424

2525
def route(rule, **options):

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def find_version(*file_paths):
6161
'Programming Language :: Python :: 3.4',
6262
'Programming Language :: Python :: 3.5',
6363
'Programming Language :: Python :: 3.6',
64+
'Programming Language :: Python :: 3.7',
6465
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
6566
'Topic :: Software Development :: Libraries :: Python Modules'
6667
],

0 commit comments

Comments
 (0)