From e862fe0166099ebb7f452fed518e1bb38b2a3be2 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Sun, 24 Nov 2019 20:53:36 -0700 Subject: [PATCH] Updated CHANGELOG --- CHANGELOG.rst | 4 +++- cicd/publish-gitlab-release.sh | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d8aacf2..dca3c5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,9 @@ v0.8.9 ====== -* Enabled storing passwords in the system keyring. +* Passwords are now stored in the system keyring rather than in plain text. +* The play queue now behaves properly when there are many instances of the same + song in the play queue. * **Infrastructure**: * Added a ``Pipfile`` and made the CI/CD build use it for testing. diff --git a/cicd/publish-gitlab-release.sh b/cicd/publish-gitlab-release.sh index 3d8255f..e3f39b0 100755 --- a/cicd/publish-gitlab-release.sh +++ b/cicd/publish-gitlab-release.sh @@ -29,6 +29,7 @@ fi description=$(echo "$description" | sed ':a;N;$!ba;s/\n/\\n/g') +url="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases" data=" { \"name\": \"${CI_COMMIT_TAG}\", @@ -45,6 +46,8 @@ data=" } " +echo "URL:" +echo "$url" echo "DATA:" echo "$data" @@ -53,4 +56,4 @@ curl \ --header "PRIVATE-TOKEN: ${RELEASE_PUBLISH_TOKEN}" \ --data "$data" \ --request POST \ - ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases + $url