diff --git a/NEWS b/NEWS index 4440b1cbde..a6a7f8e966 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +Changes between 6.4.0 and 6.5.0 +=============================== +Module changes: +* xkcd module can now recognize xkcd.com urls +* SSL is verified for HTTP requests when not turned off in the config +* The command list is placed in a gist, to prevent flooding +* Title finding uses a custom user agent, to prevent issues with some sites + +Core changes: +* Intent handling is improved + +API changes: +* A @url decorator is added to simplify URL handling + Changes between 6.3.1 and 6.4.0 =============================== Module changes: diff --git a/sopel/__init__.py b/sopel/__init__.py index cc6d0e1425..b50e3b5f87 100644 --- a/sopel/__init__.py +++ b/sopel/__init__.py @@ -29,7 +29,7 @@ import traceback import signal -__version__ = '6.4.0' +__version__ = '6.5.0' def _version_info(version=__version__):