diff --git a/CHANGELOG.md b/CHANGELOG.md index 3987506cce..d85bce05a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +Changes in [34.5.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v34.5.0) (2024-09-10) +================================================================================================== +## 🦖 Deprecations + +* Deprecate unused callback hooks `CryptoCallbacks.onSecretRequested` and `CryptoCallbacks.getDehydrationKey` ([#4376](https://github.com/matrix-org/matrix-js-sdk/pull/4376)). Contributed by @richvdh. + + Changes in [34.4.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v34.4.0) (2024-08-27) ================================================================================================== ## ✨ Features diff --git a/package.json b/package.json index 9ac783ff7e..bde34a1487 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "34.4.0", + "version": "34.5.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=20.0.0" @@ -127,6 +127,5 @@ "outputDirectory": "coverage", "outputName": "jest-sonar-report.xml", "relativePaths": true - }, - "typings": "./lib/index.d.ts" + } }