diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd0941..ee31951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [v1.0.1] - 2023-11-24 + +- Fix crash on migrating a config that had > 1 destinations + ## [v1.0.0] - 2023-11-23 - Don't start downloads until "start download" is pressed diff --git a/main.go b/main.go index 9c707ae..0ba799e 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( func main() { versionInfo := &version.Manager{ - VersionInfo: version.Info{CurrentVersion: "v1.0.0"}, + VersionInfo: version.Info{CurrentVersion: "v1.0.1"}, } log.Printf("Starting gropple %s - https://github.com/tardisx/gropple", versionInfo.GetInfo().CurrentVersion)