diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index ba26f15..0000000 --- a/CHANGELOG +++ /dev/null @@ -1,4 +0,0 @@ -v0.8.6 -====== - -* Released to the AUR diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..daaa198 --- /dev/null +++ b/CHANGELOG.rst @@ -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. diff --git a/cicd/publish-gitlab-release.sh b/cicd/publish-gitlab-release.sh index c1d8cce..2d3aadb 100755 --- a/cicd/publish-gitlab-release.sh +++ b/cicd/publish-gitlab-release.sh @@ -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 diff --git a/sublime/__init__.py b/sublime/__init__.py index 37e9d6d..8843c51 100644 --- a/sublime/__init__.py +++ b/sublime/__init__.py @@ -1 +1 @@ -__version__ = '0.8.6' +__version__ = '0.8.7'