diff --git a/CHANGES.rst b/CHANGES.rst index f449efc..928732e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,14 @@ Changelog The full list of changes between each Python LiveReload release. +Version 2.7.1 +------------- + +Released on Dec 18, 2024 + +1. Wait for the IOLoop to be stopped before attempting to close it +2. Not injecting live script when serving non-HTML content + Version 2.7.0 ------------- diff --git a/livereload/__init__.py b/livereload/__init__.py index 931ff62..aeb788c 100644 --- a/livereload/__init__.py +++ b/livereload/__init__.py @@ -8,7 +8,7 @@ :license: BSD, see LICENSE for more details. """ -__version__ = '2.7.0' +__version__ = '2.7.1' __author__ = 'Hsiaoming Yang ' __homepage__ = 'https://github.com/lepture/python-livereload'