Release notes for v0.8.6

This commit is contained in:
Sumner Evans
2019-10-29 16:45:49 -06:00
parent 9abb4e2ccb
commit 89f00e2162
4 changed files with 32 additions and 8 deletions

View File

@@ -1,4 +0,0 @@
v0.8.6
======
* Released to the AUR

28
CHANGELOG.rst Normal file
View File

@@ -0,0 +1,28 @@
v0.8.7
======
* **Flatpak support!** Everything works with Flatpak now, and the Flatpak is
configured to use the local ``XDG`` directories.
* Switch between multiple Subsonic API compliant servers.
* Fixed a few of the icons to make them use the ``-symbolic`` version.
* Infrastructure:
* Automatically cut a release when a ``v*`` tag is present. (This creates a
PyPi release and a new release in the Releases tab.)
* Protected the ``v*`` tag so that only maintainers can deploy releases.
v0.8.6
======
* Pre-beta release
* First release to be released to the AUR
* Everything is more or less working. Most of the main user flows are fully
supported.
* Browse songs using Album, Artist, and Playlist views.
* Connect to a Subsonic API compliant server.
* Play music through Chromecasts on the same LAN.
* DBus MPRIS interface integration for controlling Sublime Music via
``playerctl``, ``i3status-rust``, KDE Connect, and other DBus MPRIS clients.
* Play queue.
* Create/delete/edit Playlists.
* Cache songs for offline listening.

View File

@@ -3,7 +3,7 @@
set -e
# The release notes for this version should be the first line of the CHANGELOG.
if [[ $(head -n 1 CHANGELOG) == "${CI_COMMIT_TAG}" ]]; then
if [[ $(head -n 1 CHANGELOG.rst) == "${CI_COMMIT_TAG}" ]]; then
# Extract all of the bullet points and other things until the next header.
i=0
first=1
@@ -15,12 +15,12 @@ if [[ $(head -n 1 CHANGELOG) == "${CI_COMMIT_TAG}" ]]; then
fi
first=0
fi
done < CHANGELOG
done < CHANGELOG.rst
# i is now the index of the line below the second header.
description="**Release Notes:**
$(head -n $(( $i - 2 )) CHANGELOG | tail -n $(( $i - 5 )))"
$(head -n $(( $i - 2 )) CHANGELOG.rst | tail -n $(( $i - 5 )))"
fi
if [[ "${description}" == "" ]]; then

View File

@@ -1 +1 @@
__version__ = '0.8.6'
__version__ = '0.8.7'