Version bump to 0.9.0

This commit is contained in:
Sumner Evans
2020-03-20 08:06:39 -06:00
parent 32bfda030e
commit 4c6a0391bc
3 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
v0.9.0
======
This is the first ``v0.9.*`` release. I've decided to bump the minor version,
since this is the first release where I feel that all core functionality works.
All of the releases in the ``v0.9.*`` series will build towards the ``v1.0.0``
release.
* New logo that isn't total garbage. By mountdesign_ on Fiverr_. (#110)
* Cover art for a given album is now only stored once at high resolution and
scaled whenever used.

View File

@@ -1 +1 @@
__version__ = '0.8.13'
__version__ = '0.9.0'

View File

@@ -91,7 +91,8 @@ class PlaylistList(Gtk.Box):
playlist_list_actions = Gtk.ActionBar()
new_playlist_button = IconButton('list-add-symbolic', label='New Playlist')
new_playlist_button = IconButton(
'list-add-symbolic', label='New Playlist')
new_playlist_button.connect('clicked', self.on_new_playlist_clicked)
playlist_list_actions.pack_start(new_playlist_button)