diff --git a/CHANGELOG.md b/CHANGELOG.md index 265d22fc..874c364a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## unreleased +## 0.12.0 - 2023-01-17 + ### Changed +- Updated `teloxide-macros` to v0.7.1; see its [changelog](crates/teloxide-macros/CHANGELOG.md#071---2023-01-17) for more. +- Updated `teloxide-core` to v0.9.0; see its [changelog](crates/teloxide-core/CHANGELOG.md#090---2023-01-17) for more. - Updated `axum` to v0.6.0. - The module structure - `teloxide::dispatching::update_listeners` => `teloxide::update_listeners` diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index acbf9301..160bc429 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -1,13 +1,13 @@ This document describes breaking changes of `teloxide` crate, as well as the ways to update code. Note that the list of required changes is not fully exhaustive and it may lack something in rare cases. -## 0.11 -> 0.?? +## 0.11 -> 0.12 ### teloxide -`rocksdb-storage` feature and associated items were removed. -If you are using rocksdb storage, you'll need to either write `Storage` impl yourself, or use a third party crate. - +The `rocksdb-storage` feature and associated items were removed. If you need to use RocksDB, you can use the [`teloxide-rocksdb`] crate. + +[`teloxide-rocksdb`]: https://github.com/teloxide/teloxide-rocksdb ## 0.11 -> 0.11.3 diff --git a/README.md b/README.md index 391f9345..49ab32db 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -> [v0.11 -> v0.11.3 migration guide >>](MIGRATION_GUIDE.md#011---0113) +> [v0.11 -> v0.12 migration guide >>](MIGRATION_GUIDE.md#011---012)