From 63ca613e30ec0455ce18968f89ee41e51d0a056f Mon Sep 17 00:00:00 2001 From: hoatle Date: Sat, 25 Dec 2021 00:37:24 +0700 Subject: [PATCH] @ #135 | should release v0.15.0-b1 --- CHANGELOG.md | 17 +++++++++++++++++ docs/conf.py | 2 +- flask_classful.py | 2 +- setup.py | 7 ++++--- 4 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f386632..a641d07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +2021-12-25 Hoat Le +-------------------------------------- + + 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 -------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index a3a01b2..3a6aba2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/flask_classful.py b/flask_classful.py index 58a5692..5f2c436 100644 --- a/flask_classful.py +++ b/flask_classful.py @@ -19,7 +19,7 @@ _py2 = sys.version_info[0] == 2 -__version__ = "0.15.0-dev0" +__version__ = "0.15.0-b1" def route(rule, **options): diff --git a/setup.py b/setup.py index d20af8d..c8635af 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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' ],