From 658de6fe84b0cac151633b30191630112e899af6 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 21 Aug 2018 19:03:00 +0200 Subject: [PATCH] Version bump and changelog for 0.16.2 --- CHANGELOG | 14 ++++++++++++++ api/funkwhale_api/__init__.py | 2 +- changes/changelog.d/490.bugfix | 1 - changes/changelog.d/494.bugfix | 1 - 4 files changed, 15 insertions(+), 3 deletions(-) delete mode 100644 changes/changelog.d/490.bugfix delete mode 100644 changes/changelog.d/494.bugfix diff --git a/CHANGELOG b/CHANGELOG index 9ef9fd667c..7fcaceaf4c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,20 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +0.16.2 (2018-08-21) +------------------- + +Upgrade instructions are available at +https://docs.funkwhale.audio/upgrading.html + +Bugfixes: + +- Ensure we always have a default api url set on first load to avoid displaying + the instance picker (#490) +- Fixed CLI importer syntax error because of async reserved keyword usage + (#494) + + 0.16.1 (2018-08-19) ------------------- diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 4b0303cdc2..b897028f20 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "0.16.1" +__version__ = "0.16.2" __version_info__ = tuple( [ int(num) if num.isdigit() else num diff --git a/changes/changelog.d/490.bugfix b/changes/changelog.d/490.bugfix deleted file mode 100644 index da37bdf4bd..0000000000 --- a/changes/changelog.d/490.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure we always have a default api url set on first load to avoid displaying the instance picker (#490) diff --git a/changes/changelog.d/494.bugfix b/changes/changelog.d/494.bugfix deleted file mode 100644 index 4fc77f8585..0000000000 --- a/changes/changelog.d/494.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed CLI importer syntax error because of async reserved keyword usage (#494) -- GitLab