diff --git a/CHANGELOG.md b/CHANGELOG.md index e1f8dc3a..184d0953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change log +### v0.11.1 +* Fix the implementation of #203, allowing users to pass their own bottle instances into Eel. + ### v0.11.0 * Added support for `app` parameter to `eel.start`, which will override the bottle app instance used to run eel. This allows developers to apply any middleware they wish to before handing over to eel. diff --git a/setup.py b/setup.py index c455bb90..152de017 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='Eel', - version='0.11.0', + version='0.11.1', author='Chris Knott', author_email='chrisknott@hotmail.co.uk', packages=['eel'],