Skip to content

Commit

Permalink
2.1.1 -> 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sh4nks committed May 29, 2020
1 parent 047f6f6 commit 343b104
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Flask-BabelPlus Changelog
=========================

Version 2.1.2
-------------

Released on May 29th 2020.

- Fix werkzeug import error ``from werkzeug import ImmutableDict``. PR #3.


Version 2.1.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion flask_babelplus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
format_currency, format_percent, format_scientific


__version__ = '2.1.1'
__version__ = '2.1.2'
__all__ = (
'Babel', 'Domain', 'get_domain', 'gettext', 'ngettext', 'pgettext',
'npgettext', 'lazy_gettext', 'lazy_pgettext', 'get_locale', 'get_timezone',
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def run_tests(self):
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask>=0.9',
'Flask>=1.0',
'Werkzeug>=1.0',
'Babel>=1.0',
'Jinja2>=2.5'
],
Expand Down

0 comments on commit 343b104

Please sign in to comment.