Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.16.0 release #151

Merged
merged 1 commit into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2023-08-28 F.N. Claessen <felix@seita.nl>
-----------------------------------------

Version: 0.16.0

- Tasks:
* Compatibility with werkzeug 2.2 #145


2021-12-25 Hoat Le <hoatle@teracy.com>
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion dev-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Stop the watching files by using `Ctrl + c`.

## How to develop

- `$ docker-compose up` will check code style and run tests with defaul Python image.
- `$ docker-compose up` will check code style and run tests with default Python image.

There are environment variables to run and check with different versions of Python:

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = '0.15'
version = '0.16'
# The full version, including alpha/beta/rc tags.
release = '0.15.0-dev1'
release = '0.16.0'

# 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-dev1"
__version__ = "0.16.0"


def route(rule, **options):
Expand Down