diff --git a/NEWS b/NEWS index 9eafe6f..b794997 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +Changes between 0.3.0 and 0.3.1 +=============================== +* Override handling of rare API errors reported to output the key (#23) + + Changes between 0.2.1 and 0.3.0 =============================== * Allow configuring what video details to include (#18) @@ -9,16 +14,19 @@ Changes between 0.2.0 and 0.2.1 =============================== * Handle API sending wrongly formatted timestamps (#20) + Changes between 0.1.3 and 0.2.0 =============================== * Update for Sopel 7 (#15) + Changes between 0.1.2 and 0.1.3 =============================== * Add retry mechanic to API fetching (#11) * Fix exception traceback sometimes thrown on reconnect (#14) * Update ancient, deprecated usage of Sopel's memory API (#16) + Changes between 0.1.1 and 0.1.2 =============================== * Fix error when video comments are disabled @@ -26,6 +34,7 @@ Changes between 0.1.1 and 0.1.2 * Restrict google-api-python-client to compatible version range * Fix version-number import issue during installation + Changes between 0.1.0 and 0.1.1 =============================== * Output is colorized diff --git a/sopel_modules/youtube/__init__.py b/sopel_modules/youtube/__init__.py index c3b4742..f361194 100644 --- a/sopel_modules/youtube/__init__.py +++ b/sopel_modules/youtube/__init__.py @@ -14,5 +14,5 @@ __author__ = 'dgw' __email__ = 'dgw@technobabbl.es' -__version__ = '0.3.0' +__version__ = '0.3.1'