Skip to content

Commit

Permalink
Release version 0.14.0
Browse files Browse the repository at this point in the history
I forgot to push this commit when I actually released this version last
year.
  • Loading branch information
jstasiak committed Jul 26, 2023
1 parent 993c0bb commit fc6ff14
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Flask-Injector Changelog
========================

Version 0.14.0
--------------

* Infrastructure contributions thanks to ZHANG Cheng
* Fixed all known Flask/Werkzeug compatibility issues

Backwards incompatible:

* Dropped Python 3.6 support
* Flask >= 2.1.2 is now required
* Injector >= 0.20.0 is now required

Version 0.13.0
--------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ can `find Injector on PyPI <https://pypi.org/project/injector/>`_ and `Injector
documentation on Read the Docs <https://injector.readthedocs.io/en/latest/>`_.

`Flask-Injector` is compatible with CPython 3.7+.
As of version post-0.13.0 it requires Injector version 0.20.0 or greater and Flask
As of version 0.14.0 it requires Injector version 0.20.0 or greater and Flask
2.1.2 or greater.

GitHub project page: https://github.com/alecthomas/flask_injector
Expand Down
2 changes: 1 addition & 1 deletion flask_injector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@


__author__ = 'Alec Thomas <[email protected]>'
__version__ = '0.13.0'
__version__ = '0.14.0'
__all__ = ['request', 'RequestScope', 'Config', 'Request', 'FlaskInjector']

T = TypeVar('T', LocalProxy, Callable)
Expand Down

0 comments on commit fc6ff14

Please sign in to comment.