From 56b72eaeb273c06cb17c54e980954e6c82be2346 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Wed, 13 Mar 2019 20:13:58 +0100 Subject: [PATCH] Add current year in documentation copyright Also bumped version --- CHANGES.txt | 5 +++++ doc/source/conf.py | 3 ++- musicpd.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index ba70b2c..507d50e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ python-musicpd Changes List =========================== +Changes in 0.#.# UNRELEASED +---------------------------- + +* ... + Changes in 0.4.4 ---------------- diff --git a/doc/source/conf.py b/doc/source/conf.py index fce621c..6839ce5 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -56,7 +56,8 @@ master_doc = 'index' # General information about the project. project = u'Python MPD Module' -copyright = u'2018, {}'.format(__author__) +from datetime import datetime +copyright = u'2012-{}, {}'.format(datetime.now().year, __author__) author = __author__ # The version info for the project you're documenting, acts as replacement for diff --git a/musicpd.py b/musicpd.py index 383ba09..6146a7a 100644 --- a/musicpd.py +++ b/musicpd.py @@ -29,7 +29,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.4.4' +VERSION = '0.4.5' CONNECTION_TIMEOUT = 5 # seconds before a tcp connection attempt times out -- 2.39.2