diff --git a/CHANGELOG.md b/CHANGELOG.md index 79c41e9eb..fb447bd9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,46 @@ # Changelog +## 1.46.0 + +- breaking change: `dc_configure()` report errors in + `DC_EVENT_CONFIGURE_PROGRESS`: capturing error events is no longer working + #1886 #1905 + +- breaking change: removed `DC_LP_{IMAP|SMTP}_SOCKET*` from `server_flags`; + added `mail_security` and `send_security` using `DC_SOCKET` enum #1835 + +- parse multiple servers in Mozilla autoconfig #1860 + +- try multiple servers for each protocol #1871 + +- do IMAP and SMTP configuration in parallel #1891 + +- configuration cleanup and speedup #1858 #1875 #1889 #1904 #1906 + +- secure-join cleanup, testing, fixing #1876 #1877 #1887 #1888 #1896 #1899 #1900 + +- do not reset peerstate on encrypted messages, + ignore reordered autocrypt headers #1885 #1890 + +- always sort message replies after parent message #1852 + +- add an index to significantly speed up `get_fresh_msg_cnt()` #1881 + +- improve mimetype guessing for PDF and many other formats #1857 #1861 + +- improve accepting invalid html #1851 + +- improve tests, cleanup and ci #1850 #1856 #1859 #1861 #1884 #1894 #1895 + +- tweak HELO command #1908 + +- make `dc_accounts_get_all()` return accounts sorted #1909 + +- fix KML coordinates precision used for location streaming #1872 + +- fix cancelling import/export #1855 + + ## 1.45.0 - add `dc_accounts_t` account manager object and related api functions #1784 diff --git a/Cargo.lock b/Cargo.lock index 5f0efa1db..e893ac449 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -803,7 +803,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.45.0" +version = "1.46.0" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -878,7 +878,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.45.0" +version = "1.46.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 987be0d06..87619052c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.45.0" +version = "1.46.0" authors = ["Delta Chat Developers (ML) "] edition = "2018" license = "MPL-2.0" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 788845662..c02a82b64 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.45.0" +version = "1.46.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"