From d96df4367d78205d69baa9e0133775c061114331 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Tue, 28 Nov 2023 09:09:53 +0100 Subject: [PATCH] Release 0.2.0 --- CHANGES.md | 11 +++++++++++ README.md | 9 +++++---- internal/version/version.go | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..c763e1d --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,11 @@ +# Scotty Changelog + +## 0.2.0 - 2023-11-28 +- lastfm: support for scrobble and love export/import +- jspf: consider loved track MBID +- Fixed tracking of import errors + + +## 0.1.0 - 2023-11-24 +- Initial development release with support for ListenBrainz, Maloja, Funkwhale, + Subsonic, Spotify, Deezer, JSPF and scrobblerlog files. diff --git a/README.md b/README.md index 8f85065..771a66c 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,14 @@ Scotty transfers your listens/scrobbles and favorite tracks between various musi ## Installation -Scotty is a command line utility written in Go. Currently the easiest way to get Scotty is by installing it from source with the following command: +Scotty is a command line utility written in Go. Binary packages for various +operating systems are available on the [release page](https://git.sr.ht/~phw/scotty/refs). - go install go.uploadedlobster.com/scotty@latest +You can also install Scotty from source with the following command: -This requires `go` to be installed on your systems. You can get it from https://go.dev/dl/ . + go install go.uploadedlobster.com/scotty@latest -In the future pre-built binary releases of Scotty will also be made available. +This requires `go` to be installed on your system. You can get it from https://go.dev/dl/ . ## Configuration diff --git a/internal/version/version.go b/internal/version/version.go index 43a6205..9a4f9fc 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -17,7 +17,7 @@ package version const ( AppName = "scotty" - AppVersion = "0.1.0" + AppVersion = "0.2.0" ) func UserAgent() string {