Skip to content

Commit aad3fbc

Browse files
authored
Merge pull request #159 from matrix-org/release-v10.1.0
Update matrix-sdk + others, release v10.1.0
2 parents 840086c + 3b4fbc1 commit aad3fbc

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# UNRELEASED
22

3+
# matrix-sdk-crypto-wasm v10.1.0
4+
5+
- Update matrix-rust-sdk to `ce9dc73376b4ee`
6+
- Update other dependencies
7+
38
# matrix-sdk-crypto-wasm v10.0.0
49

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

14-
- Update matrix-rust-sdk to `#3558886b9`.
19+
- Update matrix-rust-sdk to `3558886b9`.
1520

1621
# matrix-sdk-crypto-wasm v9.1.0
1722

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@matrix-org/matrix-sdk-crypto-wasm",
3-
"version": "10.0.0",
3+
"version": "10.1.0",
44
"homepage": "https://github.com/matrix-org/matrix-rust-sdk-wasm",
55
"description": "WebAssembly bindings of the matrix-sdk-crypto encryption library",
66
"license": "Apache-2.0",

src/verification.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,8 @@ impl VerificationRequest {
915915
#[wasm_bindgen(js_name = "getVerification")]
916916
pub fn get_verification(&self) -> JsValue {
917917
let result: Option<JsValue> =
918-
if let VerificationRequestState::Transitioned { verification } = self.inner.state() {
918+
if let VerificationRequestState::Transitioned { verification, .. } = self.inner.state()
919+
{
919920
Verification(verification).try_into().ok()
920921
} else {
921922
None

0 commit comments

Comments
 (0)