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) }