summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZygmunt Krynicki <zygmunt.krynicki@canonical.com>2012-10-22 21:28:28 +0200
committerZygmunt Krynicki <zygmunt.krynicki@canonical.com>2012-10-22 21:28:28 +0200
commitb9efc4ddf0c47f621beb13d6902d45c706d2153d (patch)
tree5956ef0707a3cf6488a0dff363a33fa1e29f2b46
parentc06e333ed25b492d1d1fbcaacb6a1540f38d16b0 (diff)
downloadmocker-b9efc4ddf0c47f621beb13d6902d45c706d2153d.tar.gz
apply 1.1.1 patches
This simply bumps the version to 1.1.1 and adds myself as the maintainer to both setup and mocker.__credits__ Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
-rw-r--r--mocker.py6
-rwxr-xr-xsetup.py2
2 files changed, 6 insertions, 2 deletions
diff --git a/mocker.py b/mocker.py
index fe135f3..89fd268 100644
--- a/mocker.py
+++ b/mocker.py
@@ -51,9 +51,11 @@ __all__ = ["Mocker", "Expect", "expect", "IS", "CONTAINS", "IN", "MATCH",
"ANY", "ARGS", "KWARGS", "MockerTestCase"]
-__author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>"
+__credits__ = """
+Written by Gustavo Niemeyer <gustavo@niemeyer.net>
+Maintained by Zygmunt Krynicki <zygmunt.krynicki@linaro.org>"""
__license__ = "BSD"
-__version__ = "1.1"
+__version__ = "1.1.1"
ERROR_PREFIX = "[Mocker] "
diff --git a/setup.py b/setup.py
index c7e5e1e..a687f7e 100755
--- a/setup.py
+++ b/setup.py
@@ -21,6 +21,8 @@ setup(
description="Graceful platform for test doubles in Python (mocks, stubs, fakes, and dummies).",
author="Gustavo Niemeyer",
author_email="gustavo@niemeyer.net",
+ maintainer="Zygmunt Krynicki",
+ maintainer_email="zygmunt.krynicki@linaro.org",
license="BSD",
url="http://labix.org/mocker",
download_url="https://launchpad.net/mocker/+download",