From 89def4c197fc81f7775f1a931113756e2ea039c7 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Sun, 26 Jun 2016 22:05:39 -0700 Subject: [PATCH] Update CHANGELOG and version number --- CHANGELOG.md | 4 ++++ main.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbd349..48b4e05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ MumbleDJ Changelog ================== +### June 26, 2016 -- `v3.0.8` +* Fixed hang on setting `max_tracks_per_playlist` to a value larger than 50 (thanks [@mattikus](https://github.com/mattikus)). +* Fixed full directory path not being created properly for config file (thanks [@DanielMarquard](https://github.com/DanielMarquard)). + ### June 25, 2016 -- `v3.0.7` * Volume can now be set to `volume.lowest` and `volume.highest` (in other words, the range is inclusive now instead of exclusive). * All configuration values can now be overridden via commandline arguments. For example: `mumbledj --admins.names="SuperUser,Matt" --volume.default="0.5" --commands.add.is_admin="false"` diff --git a/main.go b/main.go index e5e8eeb..a05a36b 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ func init() { services.DJ = DJ bot.DJ = DJ - DJ.Version = "v3.0.7" + DJ.Version = "v3.0.8" logrus.SetLevel(logrus.WarnLevel) }