Skip to content

Commit 167e093

Browse files
authored
Merge pull request #139 from hoatle/tasks/#135-v0.15.0-b1-release
@ #135 | should release v0.15.0-b1
2 parents f0a0179 + 63ca613 commit 167e093

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
2017-10-19 Hoat Le <[email protected]>
219
--------------------------------------
320

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.15'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '0.15.0-dev0'
54+
release = '0.15.0-b1'
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.15.0-dev0"
22+
__version__ = "0.15.0-b1"
2323

2424

2525
def route(rule, **options):

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def find_version(*file_paths):
4545
include_package_data=True,
4646
platforms='any',
4747
install_requires=[
48-
'Flask>=0.11, !=0.12.3'
48+
'Flask>=0.12.5'
4949
],
5050
classifiers=[
5151
'Development Status :: 4 - Beta',
@@ -57,10 +57,11 @@ def find_version(*file_paths):
5757
'Programming Language :: Python :: 2',
5858
'Programming Language :: Python :: 2.7',
5959
'Programming Language :: Python :: 3',
60-
'Programming Language :: Python :: 3.3',
61-
'Programming Language :: Python :: 3.4',
6260
'Programming Language :: Python :: 3.5',
6361
'Programming Language :: Python :: 3.6',
62+
'Programming Language :: Python :: 3.7',
63+
'Programming Language :: Python :: 3.8',
64+
'Programming Language :: Python :: 3.9',
6465
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
6566
'Topic :: Software Development :: Libraries :: Python Modules'
6667
],

0 commit comments

Comments
 (0)