Skip to content

Commit

Permalink
Merge pull request #159 from matrix-org/release-v10.1.0
Browse files Browse the repository at this point in the history
Update matrix-sdk + others, release v10.1.0
  • Loading branch information
andybalaam authored Oct 30, 2024
2 parents 840086c + 3b4fbc1 commit aad3fbc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# UNRELEASED

# matrix-sdk-crypto-wasm v10.1.0

- Update matrix-rust-sdk to `ce9dc73376b4ee`
- Update other dependencies

# matrix-sdk-crypto-wasm v10.0.0

**BREAKING CHANGES**
Expand All @@ -11,7 +16,7 @@
- Rename `UserIdentity` to `OtherUserIdentity` (in line with changes
to matrix-rust-sdk).

- Update matrix-rust-sdk to `#3558886b9`.
- Update matrix-rust-sdk to `3558886b9`.

# matrix-sdk-crypto-wasm v9.1.0

Expand Down
10 changes: 5 additions & 5 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matrix-org/matrix-sdk-crypto-wasm",
"version": "10.0.0",
"version": "10.1.0",
"homepage": "https://github.com/matrix-org/matrix-rust-sdk-wasm",
"description": "WebAssembly bindings of the matrix-sdk-crypto encryption library",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/verification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,8 @@ impl VerificationRequest {
#[wasm_bindgen(js_name = "getVerification")]
pub fn get_verification(&self) -> JsValue {
let result: Option<JsValue> =
if let VerificationRequestState::Transitioned { verification } = self.inner.state() {
if let VerificationRequestState::Transitioned { verification, .. } = self.inner.state()
{
Verification(verification).try_into().ok()
} else {
None
Expand Down

0 comments on commit aad3fbc

Please sign in to comment.