diff --git a/CHANGES.md b/CHANGES.md index 4d9ff95..c4b5342 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,13 @@ Grip Changelog -------------- +#### Version 4.6.2 (2023-10-12) + +##### Bugs fixed + +- Support Werkzeug 3 by using a default encoding of UTF-8 ([#377](https://github.com/joeyespo/grip/ issues/377) - thanks, [@daniel-eichinger-bl][]!) + + #### Version 4.6.1 (2022-03-30) ##### Bugs fixed @@ -393,3 +400,4 @@ Grip Changelog [@wvspee]: https://github.com/wvspee [@Methacrylon]: https://github.com/Methacrylon [@bryce-carson]: https://github.com/bryce-carson +[@daniel-eichinger-bl]: https://github.com/daniel-eichinger-bl diff --git a/grip/__init__.py b/grip/__init__.py index c6a847c..aefdda4 100644 --- a/grip/__init__.py +++ b/grip/__init__.py @@ -8,7 +8,7 @@ :license: MIT, see LICENSE for more details. """ -__version__ = '4.6.1' # noqa +__version__ = '4.6.2' # noqa import sys diff --git a/setup.py b/setup.py index 2833488..0f72493 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read(filename): setup( name='grip', - version='4.6.1', + version='4.6.2', description='Render local readme files before sending off to GitHub.', long_description=__doc__, author='Joe Esposito',