From e9ddd6c62f81c8d09fd3f0b1614b2906f8558756 Mon Sep 17 00:00:00 2001 From: bmcculley Date: Sat, 6 Jun 2020 19:43:39 -0400 Subject: [PATCH] new release update --- CHANGES.rst | 12 ++++++++++++ livereload/__init__.py | 2 +- setup.py | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5044521..aed8db8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,18 @@ Changelog The full list of changes between each Python LiveReload release. +Version 2.6.2 +------------- + +Released on June 6, 2020 + +1. Support for Python 2.8 +2. Enable adding custom headers to response. +3. Updates for Python 2.7 support. +4. Support for use with a reverse proxy. +5. Other bug fixes. + + Version 2.6.1 ------------- diff --git a/livereload/__init__.py b/livereload/__init__.py index 443e9f5..1b2b28d 100644 --- a/livereload/__init__.py +++ b/livereload/__init__.py @@ -8,7 +8,7 @@ :license: BSD, see LICENSE for more details. """ -__version__ = '2.6.1' +__version__ = '2.6.2' __author__ = 'Hsiaoming Yang ' __homepage__ = 'https://github.com/lepture/python-livereload' diff --git a/setup.py b/setup.py index 60e7f01..4bda832 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def version(): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Build Tools',