From 751c3ca16002a086ad554e015a31935f49651b4a Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Wed, 18 Dec 2024 22:40:31 +0900 Subject: [PATCH] chore: release 2.7.1 --- CHANGES.rst | 8 ++++++++ livereload/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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'