diff --git a/CHANGELOG.md b/CHANGELOG.md index c34511d7..b7e90f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ description = "Changelog" weight = 3 +++ +## 0.12.0 (2023-02-05) + +- Add inline keyboard for help command ([#288](https://github.com/ayrat555/el_monitorro/pull/288)) +- Add command to close/remove keyboards and messages ([#289](https://github.com/ayrat555/el_monitorro/pull/289)) +- Support `author` in templates ([#294](https://github.com/ayrat555/el_monitorro/pull/294)) +- Support authors from dublincore ([#295](https://github.com/ayrat555/el_monitorro/pull/295)) +- Add `preview_enabled` to chats ([#296](https://github.com/ayrat555/el_monitorro/pull/296)) +- Feed keyboards ([#298](https://github.com/ayrat555/el_monitorro/pull/298)) +- Process commands in conversational style ([#301](https://github.com/ayrat555/el_monitorro/pull/301)) +- CommandsKeyboard improvements ([#302](https://github.com/ayrat555/el_monitorro/pull/302)) +- Display only read-only commands for feed keyboards in public chats ([#303](https://github.com/ayrat555/el_monitorro/pull/303)) +- Update rust version and dependencies + ## 0.11.0 (2022-09-24) ### Improved diff --git a/Cargo.lock b/Cargo.lock index 0a46fc91..c1f6adb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -471,7 +471,7 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "el_monitorro" -version = "0.11.0" +version = "0.12.0" dependencies = [ "aho-corasick", "atom_syndication", @@ -1209,9 +1209,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.50" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" +checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" dependencies = [ "unicode-ident", ] @@ -1410,9 +1410,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" +checksum = "7434af0dc1cbd59268aa98b4c22c131c0584d2232f6fb166efb993e2832e896a" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index f21fd68c..a90b80cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "el_monitorro" -version = "0.11.0" +version = "0.12.0" authors = ["Ayrat Badykov "] edition = "2021" rust-version = "1.62"