Skip to content

Commit

Permalink
v6.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Jul 3, 2024
1 parent 993edf1 commit 431263d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# UNRELEASED

# matrix-sdk-crypto-wasm v6.2.1

- Update matrix-rust-sdk to `7b25a1c2f`, which includes fixes to bugs introduced in v6.2.0.
([#3651](https://github.com/matrix-org/matrix-rust-sdk/pull/3651))

# matrix-sdk-crypto-wasm v6.2.0

- Update matrix-rust-sdk to `09d53a52a`, which includes:
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": "6.2.0",
"version": "6.2.1",
"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
4 changes: 2 additions & 2 deletions tests/machine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe(OlmMachine.name, () => {
expect(databases).toHaveLength(2);
expect(databases).toStrictEqual([
{ name: `${storeName}::matrix-sdk-crypto-meta`, version: 1 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 10 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 11 },
]);

// Creating a new Olm machine, with the stored state.
Expand Down Expand Up @@ -221,7 +221,7 @@ describe(OlmMachine.name, () => {
expect(databases).toHaveLength(2);
expect(databases).toStrictEqual([
{ name: `${storeName}::matrix-sdk-crypto-meta`, version: 1 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 10 },
{ name: `${storeName}::matrix-sdk-crypto`, version: 11 },
]);

// Let's force to close the `OlmMachine`.
Expand Down

0 comments on commit 431263d

Please sign in to comment.