Skip to content

Commit

Permalink
Merge pull request #139 from hoatle/tasks/#135-v0.15.0-b1-release
Browse files Browse the repository at this point in the history
@ #135 | should release v0.15.0-b1
  • Loading branch information
hoatle authored Dec 24, 2021
2 parents f0a0179 + 63ca613 commit 167e093
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2021-12-25 Hoat Le <[email protected]>
--------------------------------------

Version: 0.15.0-b1

- Features:
* Add additional init_argument to register method #86
* Add @method decorator and handling #109

- Improvements:
* inspect.getargspec() is deprecated, use inspect.signature() or inspect.getfullargspec() #94

- Tasks:
* Bugs/fix update failed travis ci build #93
* should use github actions to run CI checks to replace travis-ci #134


2017-10-19 Hoat Le <[email protected]>
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '0.15'
# The full version, including alpha/beta/rc tags.
release = '0.15.0-dev0'
release = '0.15.0-b1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion flask_classful.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

_py2 = sys.version_info[0] == 2

__version__ = "0.15.0-dev0"
__version__ = "0.15.0-b1"


def route(rule, **options):
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def find_version(*file_paths):
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.11, !=0.12.3'
'Flask>=0.12.5'
],
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -57,10 +57,11 @@ def find_version(*file_paths):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit 167e093

Please sign in to comment.