diff --git a/CHANGELOG.md b/CHANGELOG.md index 03fe6ae483..92b703a4f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.137.1] - 2024-04-03 + +### CI + +- Remove android builds for `x86` and `x86_64`. + ## [1.137.0] - 2024-04-02 ### API-Changes @@ -3836,3 +3842,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.136.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.136.4...v1.136.5 [1.136.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.136.5...v1.136.6 [1.137.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.136.6...v1.137.0 +[1.137.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.137.0...v1.137.1 diff --git a/Cargo.lock b/Cargo.lock index da676b98e3..b3fd72197d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1085,7 +1085,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.137.0" +version = "1.137.1" dependencies = [ "ansi_term", "anyhow", @@ -1166,7 +1166,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.137.0" +version = "1.137.1" dependencies = [ "anyhow", "async-channel 2.2.0", @@ -1190,7 +1190,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.137.0" +version = "1.137.1" dependencies = [ "ansi_term", "anyhow", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.137.0" +version = "1.137.1" dependencies = [ "anyhow", "deltachat", @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.137.0" +version = "1.137.1" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index fec2b326ac..ca042d62c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.137.0" +version = "1.137.1" edition = "2021" license = "MPL-2.0" rust-version = "1.70" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 3716927ac3..9b9e52835f 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.137.0" +version = "1.137.1" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 0bab1fb870..de99291913 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.137.0" +version = "1.137.1" 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 98b9e5dafe..494e3f5a64 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -53,5 +53,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.137.0" + "version": "1.137.1" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index b8923be637..f3d8969f07 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.137.0" +version = "1.137.1" 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 bf00e29545..e7e971a95f 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.137.0" +version = "1.137.1" 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 5afbd5fbc0..ed9ff24730 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.137.0" +version = "1.137.1" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/package.json b/package.json index f0c6c9dca4..09b53a81ee 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.137.0" + "version": "1.137.1" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 408e05a24a..40412cd5a7 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.137.0" +version = "1.137.1" 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 afeba11529..2d730c7556 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-04-02 \ No newline at end of file +2024-04-03 \ No newline at end of file