]> kaliko git repositories - python-musicpd.git/commitdiff
Add current year in documentation copyright
authorKaliko Jack <kaliko@azylum.org>
Wed, 13 Mar 2019 19:13:58 +0000 (20:13 +0100)
committerKaliko Jack <kaliko@azylum.org>
Wed, 13 Mar 2019 19:13:58 +0000 (20:13 +0100)
Also bumped version

CHANGES.txt
doc/source/conf.py
musicpd.py

index ba70b2c8baca55c47b763041e483c70779e84bb6..507d50e8a4cdb45146b30cf70c8eb8925a68d8ab 100644 (file)
@@ -1,6 +1,11 @@
 python-musicpd Changes List
 ===========================
 
+Changes in 0.#.# UNRELEASED
+----------------------------
+
+* ...
+
 Changes in 0.4.4
 ----------------
 
index fce621c1db751debfe6411bbbb63d03c8d7f69ad..6839ce53011f95166a6f5e8b77502cdfafa962a0 100644 (file)
@@ -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
index 383ba0983568c93e5bdfc26633059474b0cd6115..6146a7a3be1bcc8dc959813d541610105519fbf7 100644 (file)
@@ -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