diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed8e18b1..9f94275c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ stages: - build variables: - VERSION: 0.1.3 + VERSION: 0.1.4 build-go: image: golang:1.17 diff --git a/docs/changelog.md b/docs/changelog.md index 57cbcfd5..33a2e2da 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,9 @@ -# 0.1.3 +# 0.1.4 - +# 0.1.3 +- Added date ranges to profile scrobbles + # 0.1.2 - Add docker-compose file for local dev - Implemented top listeners for artist/album endpoints to match track diff --git a/internal/goscrobble/server.go b/internal/goscrobble/server.go index bba6aef6..df5054b6 100644 --- a/internal/goscrobble/server.go +++ b/internal/goscrobble/server.go @@ -821,7 +821,7 @@ func getServerInfo(w http.ResponseWriter, r *http.Request) { } info := ServerInfo{ - Version: "0.1.3", + Version: "0.1.4", RegistrationEnabled: registrationEnabled, }