From e1f59aab20f7dc4dee819d81e3abbcbe20e22051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=BA=C3=B1ez?= Date: Thu, 28 May 2020 02:25:22 +0200 Subject: [PATCH 1/2] Fix test for nucypher worklock claim when bidder already claimed --- tests/integration/cli/test_worklock_cli_functionality.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cli/test_worklock_cli_functionality.py b/tests/integration/cli/test_worklock_cli_functionality.py index 22ab458e9..f2ecec836 100644 --- a/tests/integration/cli/test_worklock_cli_functionality.py +++ b/tests/integration/cli/test_worklock_cli_functionality.py @@ -353,7 +353,7 @@ def test_already_claimed(click_runner, '--force') result = click_runner.invoke(worklock, command, input=YES, env=CLI_TEST_ENV, catch_exceptions=False) - assert result.exit_code == 0 + assert result.exit_code == 1 # TODO: Decide if this case should error (like now) or simply do nothing # Bidder mock_withdraw_compensation.assert_called_once() From 61ef1994e77250ef68af95aa787bfe8e9f5854db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=BA=C3=B1ez?= Date: Thu, 28 May 2020 02:25:45 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=202.1.0-beta.8=20=E2=86=92?= =?UTF-8?q?=202.1.0-beta.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- nucypher/__about__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7ca6fffcf..7d1fa211e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0-beta.8 +current_version = 2.1.0-beta.9 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/docs/source/conf.py b/docs/source/conf.py index 7a8689a01..cf45bcfce 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -45,7 +45,7 @@ author = 'NuCypher' # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.1.0-beta.8' +release = '2.1.0-beta.9' # -- General configuration --------------------------------------------------- diff --git a/nucypher/__about__.py b/nucypher/__about__.py index 0da68fe12..64d315b3d 100644 --- a/nucypher/__about__.py +++ b/nucypher/__about__.py @@ -28,7 +28,7 @@ __url__ = "https://github.com/nucypher/nucypher" __summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.' -__version__ = "2.1.0-beta.8" +__version__ = "2.1.0-beta.9" __author__ = "NuCypher"