From 64a84cb8ec3dd423b820b8e2ed56a1522851fd1e Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Wed, 7 Sep 2022 15:19:59 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=20v0.3.0=20=E2=86=92=200.4.0-al?= =?UTF-8?q?pha.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- nucypher-core-python/Cargo.toml | 2 +- nucypher-core-python/setup.py | 2 +- nucypher-core-wasm/Cargo.toml | 2 +- nucypher-core-wasm/package.template.json | 2 +- nucypher-core-wasm/tests/wasm.rs | 4 +--- nucypher-core/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6d6d43b2..1bdaa2d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1-alpha.0 +current_version = 0.4.0-alpha.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/nucypher-core-python/Cargo.toml b/nucypher-core-python/Cargo.toml index 63f624d5..8d2f7497 100644 --- a/nucypher-core-python/Cargo.toml +++ b/nucypher-core-python/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nucypher-core-python" authors = ["Bogdan Opanchuk "] -version = "0.3.1-alpha.0" +version = "0.4.0-alpha.0" edition = "2018" [lib] diff --git a/nucypher-core-python/setup.py b/nucypher-core-python/setup.py index 6f2532c3..16a9d5aa 100644 --- a/nucypher-core-python/setup.py +++ b/nucypher-core-python/setup.py @@ -10,7 +10,7 @@ description="Protocol structures of Nucypher network", long_description=long_description, long_description_content_type="text/markdown", - version="0.3.1-alpha.0", + version="0.4.0-alpha.0", author="Bogdan Opanchuk", author_email="bogdan@opanchuk.net", url="https://github.com/nucypher/nucypher-core/tree/master/nucypher-core-python", diff --git a/nucypher-core-wasm/Cargo.toml b/nucypher-core-wasm/Cargo.toml index 3609f0d4..39e7d98b 100644 --- a/nucypher-core-wasm/Cargo.toml +++ b/nucypher-core-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nucypher-core-wasm" -version = "0.3.1-alpha.0" +version = "0.4.0-alpha.0" authors = [ "Bogdan Opanchuk ", "Piotr Roslaniec " diff --git a/nucypher-core-wasm/package.template.json b/nucypher-core-wasm/package.template.json index bda23969..e1688ebc 100644 --- a/nucypher-core-wasm/package.template.json +++ b/nucypher-core-wasm/package.template.json @@ -5,7 +5,7 @@ "Bogdan Opanchuk " ], "description": "NuCypher network core data structures", - "version": "0.3.1-alpha.0", + "version": "0.4.0-alpha.0", "license": "GPL-3.0-only", "repository": { "type": "git", diff --git a/nucypher-core-wasm/tests/wasm.rs b/nucypher-core-wasm/tests/wasm.rs index f2835246..4225baa9 100644 --- a/nucypher-core-wasm/tests/wasm.rs +++ b/nucypher-core-wasm/tests/wasm.rs @@ -421,9 +421,7 @@ fn reencryption_response_verify() { // Make capsules let policy_encrypting_key = alice_sk.public_key(); let plaintext = b"Hello, world!"; - let conditions = Some( - "{'hello': 'world'}".as_bytes().to_vec(), - ); + let conditions = Some("{'hello': 'world'}".as_bytes().to_vec()); let message_kit = MessageKit::new(&policy_encrypting_key, plaintext, conditions); let capsules: Vec = kfrags.iter().map(|_| message_kit.capsule()).collect(); diff --git a/nucypher-core/Cargo.toml b/nucypher-core/Cargo.toml index d980bd71..5a7e8456 100644 --- a/nucypher-core/Cargo.toml +++ b/nucypher-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nucypher-core" -version = "0.3.1-alpha.0" +version = "0.4.0-alpha.0" authors = ["Bogdan Opanchuk "] edition = "2021" license = "GPL-3.0-only"