diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cb63a65f..a83b6a4f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [1.138.2] - 2024-05-15 + +### API-Changes + +- deltachat-rpc-client: Add CONFIG_SYNCED constant. + +### CI + +- Add npm token to publish deltachat-rpc-server packages. + +### Features / Changes + +- Reset more settings when configuring a chatmail account. + +### Tests + +- Set configuration after configure() finishes. + ## [1.138.1] - 2024-05-14 ### Features / Changes @@ -4106,3 +4124,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.137.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.137.3...v1.137.4 [1.138.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.137.4...v1.138.0 [1.138.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.138.0...v1.138.1 +[1.138.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.138.1...v1.138.2 diff --git a/Cargo.lock b/Cargo.lock index fb0df2bb7..eb0fc84ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.138.1" +version = "1.138.2" dependencies = [ "ansi_term", "anyhow", @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.138.1" +version = "1.138.2" dependencies = [ "anyhow", "async-channel 2.2.1", @@ -1274,7 +1274,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.138.1" +version = "1.138.2" dependencies = [ "ansi_term", "anyhow", @@ -1289,7 +1289,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.138.1" +version = "1.138.2" dependencies = [ "anyhow", "deltachat", @@ -1318,7 +1318,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.138.1" +version = "1.138.2" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index e4d4fb90b..f4e44353e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.138.1" +version = "1.138.2" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 73cd7bc3f..f47ef1f1d 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.138.1" +version = "1.138.2" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 12a7cd703..d68fc899f 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.138.1" +version = "1.138.2" description = "DeltaChat JSON-RPC API" edition = "2021" default-run = "deltachat-jsonrpc-server" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index 6344914d1..a4a0e095d 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -54,5 +54,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.138.1" + "version": "1.138.2" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 853dd2ba4..1c2ac2f41 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.138.1" +version = "1.138.2" license = "MPL-2.0" edition = "2021" repository = "https://github.com/deltachat/deltachat-core-rust" diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index c32b931e3..8d4bef982 100644 --- a/deltachat-rpc-client/pyproject.toml +++ b/deltachat-rpc-client/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat-rpc-client" -version = "1.138.1" +version = "1.138.2" description = "Python client for Delta Chat core JSON-RPC interface" classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 185ae77d1..0e292b32f 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.138.1" +version = "1.138.2" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/deltachat-rpc-server/npm-package/package.json b/deltachat-rpc-server/npm-package/package.json index 012f41e69..9a809fb24 100644 --- a/deltachat-rpc-server/npm-package/package.json +++ b/deltachat-rpc-server/npm-package/package.json @@ -11,5 +11,5 @@ }, "type": "module", "types": "index.d.ts", - "version": "1.138.1" + "version": "1.138.2" } diff --git a/package.json b/package.json index f1b1d0e7c..2cecd30aa 100644 --- a/package.json +++ b/package.json @@ -55,5 +55,5 @@ "test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.138.1" + "version": "1.138.2" } diff --git a/python/pyproject.toml b/python/pyproject.toml index e45669440..8bbfb7af2 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.138.1" +version = "1.138.2" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst" requires-python = ">=3.7" diff --git a/release-date.in b/release-date.in index e154be346..851983f57 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-05-14 \ No newline at end of file +2024-05-15 \ No newline at end of file