From ed3adea5a2f32af8062a97917e26a61dfe9fb589 Mon Sep 17 00:00:00 2001 From: Joe Esposito Date: Thu, 12 Oct 2023 00:54:56 -0400 Subject: [PATCH] Set version to 4.6.2 See CHANGES.md for a full list of changes. --- CHANGES.md | 8 ++++++++ grip/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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',