From: Kaliko Jack Date: Wed, 13 Mar 2019 19:13:58 +0000 (+0100) Subject: Add current year in documentation copyright X-Git-Tag: v0.5.0~13 X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=56b72eaeb273c06cb17c54e980954e6c82be2346 Add current year in documentation copyright Also bumped version --- 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