From e72e495baeb24aa3657f6f0081191f04ccb94e99 Mon Sep 17 00:00:00 2001 From: ChisSoc <75833833+ChisSoc@users.noreply.github.com> Date: Fri, 30 Dec 2022 16:58:01 +0100 Subject: [PATCH] Bump up version number to 3.2.1 --- docs/sphinx/conf.py | 2 +- src/jukebox/jukebox/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index b4d302156..79b9476bd 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -23,7 +23,7 @@ # -- Project information ----------------------------------------------------- project = 'RPi Jukebox RFID' -copyright = '2021, The RPi Jukebox RFID Community' +copyright = '2021-2022, The RPi Jukebox RFID Community' author = 'The RPi Jukebox RFID Community' # The full version, including alpha/beta/rc tags diff --git a/src/jukebox/jukebox/version.py b/src/jukebox/jukebox/version.py index a9f463338..ff86e01fc 100644 --- a/src/jukebox/jukebox/version.py +++ b/src/jukebox/jukebox/version.py @@ -1,7 +1,7 @@ VERSION_MAJOR = 3 VERSION_MINOR = 2 -VERSION_PATCH = 0 +VERSION_PATCH = 1 VERSION_EXTRA = "" __version__ = '%i.%i.%i' % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)