From 2f6bda5018342b2faf0514e6ef6221ec52d03448 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Sat, 5 Nov 2016 19:41:58 -0700 Subject: [PATCH] Update version number and changelog --- CHANGELOG.md | 4 ++++ main.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b3b671..7dddce8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ MumbleDJ Changelog ================== +### November 5, 2016 -- `v3.2.0` +* Fixed a Go panic that would occur when a YouTube playlist contained a private video. +* Added back immediate skipping for tracks/playlists that are skipped by the submitter. This was a feature that was present in the last major version of MumbleDJ but was forgotten when rewriting the bot (sorry!). + ### August 22, 2016 -- `v3.1.4` * Fixed a SoundCloud API response parsing issue that would result in empty IDs for tracks. * Fixed the startup check for SoundCloud API. diff --git a/main.go b/main.go index dc1ccc0..0642810 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ func init() { services.DJ = DJ bot.DJ = DJ - DJ.Version = "v3.1.4" + DJ.Version = "v3.2.0" logrus.SetLevel(logrus.WarnLevel) }