diff options
author | David Arthur <mumrah@gmail.com> | 2015-02-03 20:03:07 -0500 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2015-02-03 20:03:30 -0500 |
commit | c29cfdc15606333036a2b1e5d501162a005473e1 (patch) | |
tree | 506cae3782690356e6671cdcd0a59ca1cee38852 | |
parent | 91156f6ae4c65326fa6f20ea31949f90fe4751f9 (diff) | |
download | kafka-python-c29cfdc15606333036a2b1e5d501162a005473e1.tar.gz |
2014 -> 2015
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | docs/index.rst | 2 | ||||
-rw-r--r-- | kafka/__init__.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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 |