From 4608e58bc10d85b047879edd18cadd58b01cb180 Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 27 Jan 2019 14:22:27 -0600 Subject: [PATCH] Release version 6.6.1 --- NEWS | 8 ++++++++ sopel/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 36b3fba223..db7aebdfa2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Changes between 6.6.0 and 6.6.1 +=============================== +Module changes: +* spellcheck's pyenchant dependency is no longer required for py3.7+ + * This should alleviate a lot of installation problems due to pyenchant being + unmaintained. If use of the spellcheck module is desired, the necessary + libraries may be installed manually. + Changes between 6.5.3 and 6.6.0 =============================== Sopel 6.6.0 has been a long time coming, but it contains a metric ton of fixes diff --git a/sopel/__init__.py b/sopel/__init__.py index 81e415cf57..bdd8ba6ed2 100644 --- a/sopel/__init__.py +++ b/sopel/__init__.py @@ -30,7 +30,7 @@ import traceback import signal -__version__ = '6.6.0' +__version__ = '6.6.1' def _version_info(version=__version__):