summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Arthur <mumrah@gmail.com>2015-02-03 20:03:07 -0500
committerDavid Arthur <mumrah@gmail.com>2015-02-03 20:03:30 -0500
commitc29cfdc15606333036a2b1e5d501162a005473e1 (patch)
tree506cae3782690356e6671cdcd0a59ca1cee38852
parent91156f6ae4c65326fa6f20ea31949f90fe4751f9 (diff)
downloadkafka-python-c29cfdc15606333036a2b1e5d501162a005473e1.tar.gz
2014 -> 2015
-rw-r--r--README.md2
-rw-r--r--docs/index.rst2
-rw-r--r--kafka/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index cd12c2e..031382c 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ see https://groups.google.com/forum/m/#!forum/kafka-clients
# License
-Copyright 2014, David Arthur under Apache License, v2.0. See `LICENSE`
+Copyright 2015, David Arthur under Apache License, v2.0. See `LICENSE`
# Status
diff --git a/docs/index.rst b/docs/index.rst
index 82c3f57..96f0d3b 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -35,7 +35,7 @@ Python versions
License
-------
-Copyright 2014, David Arthur under Apache License, v2.0. See `LICENSE <https://github.com/mumrah/kafka-python/blob/master/LICENSE>`_.
+Copyright 2015, David Arthur under Apache License, v2.0. See `LICENSE <https://github.com/mumrah/kafka-python/blob/master/LICENSE>`_.
Contents
diff --git a/kafka/__init__.py b/kafka/__init__.py
index 8ccdb4c..3536084 100644
--- a/kafka/__init__.py
+++ b/kafka/__init__.py
@@ -4,7 +4,7 @@ import pkg_resources
__version__ = pkg_resources.require('kafka-python')[0].version
__author__ = 'David Arthur'
__license__ = 'Apache License 2.0'
-__copyright__ = 'Copyright 2014, David Arthur under Apache License, v2.0'
+__copyright__ = 'Copyright 2015, David Arthur under Apache License, v2.0'
from kafka.client import KafkaClient
from kafka.conn import KafkaConnection