Skip to content
Snippets Groups Projects
Verified Commit e1474400 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge tag '0.16.2' into develop

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)
parents 15cd5e9c 8a94806d
No related branches found
No related tags found
No related merge requests found
......@@ -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)
-------------------
......
# -*- coding: utf-8 -*-
__version__ = "0.16.1"
__version__ = "0.16.2"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
......
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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment