From 6a08e8a01a78134f339b96dabf6c50431023f3d0 Mon Sep 17 00:00:00 2001 From: piotr-roslaniec <39299780+piotr-roslaniec@users.noreply.github.com> Date: Wed, 3 Apr 2024 09:28:35 +0200 Subject: [PATCH 1/2] chore(readme): adds clarification about the build process for WASM bindings --- nucypher-core-wasm/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nucypher-core-wasm/README.md b/nucypher-core-wasm/README.md index bee72c78..6c22da55 100644 --- a/nucypher-core-wasm/README.md +++ b/nucypher-core-wasm/README.md @@ -7,4 +7,8 @@ cargo test make clean make cd examples/node && rm -rf node_modules/nucypher-core node_modules/umbral-pre && yarn install --check-files && yarn test -``` \ No newline at end of file +``` + +## Bundling and releasing + +Bundling methods in the `Makefile` have been replaced by [`nucypher-core-wasm-bundler`](../nucypher-core-wasm-bundler/README.md). Use this new build process for updating the NPM package, `@nucypher/nucypher-core`. From 3017443c40814eb2b23bc16eb5f1476b8276d7df Mon Sep 17 00:00:00 2001 From: Piotr Roslaniec Date: Wed, 3 Apr 2024 10:37:44 +0200 Subject: [PATCH 2/2] fix(python): fix missing exception in python stubs --- nucypher-core-python/nucypher_core/umbral.pyi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nucypher-core-python/nucypher_core/umbral.pyi b/nucypher-core-python/nucypher_core/umbral.pyi index 7ced6724..14bfd9b0 100644 --- a/nucypher-core-python/nucypher_core/umbral.pyi +++ b/nucypher-core-python/nucypher_core/umbral.pyi @@ -260,3 +260,7 @@ class ReencryptionEvidence: kfrag_validity_message_hash: bytes kfrag_signature_v: bool + + +class VerificationError(Exception): + pass \ No newline at end of file