diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a9c0786..c07117307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,16 +3,23 @@ ## [Unreleased] ### Changes -- "full message view" not needed because of footers that go to contact status #4151 -- Pick up system's light/dark mode in generated message HTML #4150 -- Support non-persistent configuration with DELTACHAT_* env -- Print deltachat-repl errors with causes. #4166 + +### Fixes + + +## [1.112.0] - 2023-03-23 + +### Changes - Increase MSRV to 1.64. #4167 - Core takes care of stopping and re-starting IO itself where needed, - e.g. during backup creation. It is no longer needed to call - dc_stop_io(). dc_start_io() can now be called at any time without - harm. #4138 -- More accurate maybe_add_bcc_self device message text #4175 + e.g. during backup creation. + It is no longer needed to call `dc_stop_io()`. + `dc_start_io()` can now be called at any time without harm. #4138 +- Pick up system's light/dark mode in generated message HTML. #4150 +- More accurate `maybe_add_bcc_self` device message text. #4175 +- "Full message view" not needed because of footers that go to contact status. #4151 +- Support non-persistent configuration with `DELTACHAT_*` env. #4154 +- Print deltachat-repl errors with causes. #4166 ### Fixes - Fix segmentation fault if `dc_context_unref()` is called during @@ -26,7 +33,8 @@ - Add `DC_EVENT_IMAP_INBOX_IDLE` event to wait until the account is ready for testing. It is used to fix race condition between fetching - existing messages and starting the test. + existing messages and starting the test. #4208 + ## [1.111.0] - 2023-03-05 @@ -2318,5 +2326,6 @@ For a full list of changes, please see our closed Pull Requests: https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed -[unreleased]: https://github.com/deltachat/deltachat-core-rust/compare/v1.111.0...HEAD +[unreleased]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.0...HEAD [1.111.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.110.0...v1.111.0 +[1.112.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.111.0...v1.112.0 diff --git a/Cargo.lock b/Cargo.lock index 38da68d4e..cbc834bfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1136,7 +1136,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.111.0" +version = "1.112.0" dependencies = [ "ansi_term", "anyhow", @@ -1209,7 +1209,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.111.0" +version = "1.112.0" dependencies = [ "anyhow", "async-channel", @@ -1232,7 +1232,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.111.0" +version = "1.112.0" dependencies = [ "ansi_term", "anyhow", @@ -1247,7 +1247,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.111.0" +version = "1.112.0" dependencies = [ "anyhow", "deltachat-jsonrpc", @@ -1270,7 +1270,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.111.0" +version = "1.112.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 4ce82ee35..849ca0aa3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.111.0" +version = "1.112.0" edition = "2021" license = "MPL-2.0" rust-version = "1.64" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 8479a184a..3e10245e9 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.111.0" +version = "1.112.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index b0b3659d3..2d988665c 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.111.0" +version = "1.112.0" 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 82ba65462..1c3037b4f 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -55,5 +55,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.111.0" + "version": "1.112.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 5a81c7a19..d06962249 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.111.0" +version = "1.112.0" license = "MPL-2.0" edition = "2021" diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index c1fcbaa26..4dc3fb691 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.111.0" +version = "1.112.0" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/package.json b/package.json index 55f54cd33..d3d930151 100644 --- a/package.json +++ b/package.json @@ -60,5 +60,5 @@ "test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.111.0" + "version": "1.112.0" } \ No newline at end of file diff --git a/scripts/set_core_version.py b/scripts/set_core_version.py index 84444f8ef..7bc888d1b 100755 --- a/scripts/set_core_version.py +++ b/scripts/set_core_version.py @@ -93,7 +93,7 @@ def main(): if "alpha" not in newversion: for line in open("CHANGELOG.md"): ## 1.25.0 - if line.startswith("## ") and line[2:].strip().startswith(newversion): + if line.startswith("## [") and line[4:].strip().startswith(newversion): break else: raise SystemExit(