From ded0567cbfd814e8f008cbe50d949e86e3681d9f Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 18 Jan 2022 22:28:33 +0100 Subject: [PATCH] v1.1.12 --- copyparty/__version__.py | 4 ++-- tests/util.py | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 0618ee80..62ea0d33 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 1, 11) +VERSION = (1, 1, 12) CODENAME = "opus" -BUILD_DT = (2022, 1, 14) +BUILD_DT = (2022, 1, 18) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/tests/util.py b/tests/util.py index 6a96197a..0a5f8cf7 100644 --- a/tests/util.py +++ b/tests/util.py @@ -109,6 +109,9 @@ class VSock(object): self._reply += buf return len(buf) + def getsockname(self): + return ("a", 1) + class VHttpSrv(object): def __init__(self):