Skip to content

Commit

Permalink
Merge pull request #64 from piotr-roslaniec/wasm-equality#56
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec authored Jun 22, 2023
2 parents c77a160 + 0917370 commit 6b33158
Show file tree
Hide file tree
Showing 7 changed files with 131 additions and 140 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fixed a typo in the Python type stubs for `ferveo.Keypair.secure_randomness_size()`. ([#61])

### Added

- Added `equals` method to protocol objects in WASM bindings ([#56])

[ferveo#127]: https://github.com/nucypher/nucypher-core/pull/127
[#61]: https://github.com/nucypher/nucypher-core/pull/61
Expand All @@ -39,8 +42,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


[#53]: https://github.com/nucypher/nucypher-core/pull/53
[#58]: https://github.com/nucypher/nucypher-core/pull/58
[#54]: https://github.com/nucypher/nucypher-core/pull/54
[#56]: https://github.com/nucypher/nucypher-core/pull/56
[#58]: https://github.com/nucypher/nucypher-core/pull/58


## [0.8.0] - 2023-05-23
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nucypher-core-python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ impl ThresholdDecryptionRequest {
_ => {
return Err(PyValueError::new_err(
"Invalid ThresholdDecryptionRequest variant",
))
));
}
};

Expand Down
1 change: 1 addition & 0 deletions nucypher-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ x25519-dalek = "2.0.0-rc.2"

[dev-dependencies]
console_error_panic_hook = "0.1"
hex = "0.4.3"
wasm-bindgen-test = "0.3.36"
Loading

0 comments on commit 6b33158

Please sign in to comment.