diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bb6b0bf..ec039ebe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased
+## 0.13.0 - 2024-08-16
+
### Added
- Documentation regarding the way captions work for the official clients on `SendMediaGroup` ([PR 992](https://github.com/teloxide/teloxide/pull/992))
diff --git a/README.md b/README.md
index f0a53ea3..77b613fa 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,3 @@
-> [v0.11 -> v0.12 migration guide >>](MIGRATION_GUIDE.md#011---012)
-
teloxide
@@ -72,7 +70,7 @@ $ rustup override set nightly
5. Run `cargo new my_bot`, enter the directory and put these lines into your `Cargo.toml`:
```toml
[dependencies]
-teloxide = { version = "0.12", features = ["macros"] }
+teloxide = { version = "0.13", features = ["macros"] }
log = "0.4"
pretty_env_logger = "0.4"
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
@@ -356,7 +354,7 @@ Feel free to propose your own bot to our collection!
-See [1600+ other public repositories using `teloxide` >>](https://github.com/teloxide/teloxide/network/dependents)
+See [1900+ other public repositories using `teloxide` >>](https://github.com/teloxide/teloxide/network/dependents)
## Contributing
diff --git a/crates/teloxide-core/CHANGELOG.md b/crates/teloxide-core/CHANGELOG.md
index 34b7ec97..e50d39a4 100644
--- a/crates/teloxide-core/CHANGELOG.md
+++ b/crates/teloxide-core/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased
+## 0.10.0 - 2024-08-16
+
### Added
- `ChatPermission::can_*` helper functions ([#851][pr851])
diff --git a/crates/teloxide-core/Cargo.toml b/crates/teloxide-core/Cargo.toml
index af60953f..31c93343 100644
--- a/crates/teloxide-core/Cargo.toml
+++ b/crates/teloxide-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "teloxide-core"
-version = "0.9.1"
+version = "0.10.0"
description = "Core part of the `teloxide` library - telegram bot API client"
rust-version.workspace = true
diff --git a/crates/teloxide-core/README.md b/crates/teloxide-core/README.md
index 46bb7dd5..a978aeee 100644
--- a/crates/teloxide-core/README.md
+++ b/crates/teloxide-core/README.md
@@ -25,7 +25,7 @@
```toml
-teloxide-core = "0.9"
+teloxide-core = "0.10"
```
_Compiler support: requires rustc 1.68+_.
diff --git a/crates/teloxide-macros/CHANGELOG.md b/crates/teloxide-macros/CHANGELOG.md
index 1f464682..3aa601a9 100644
--- a/crates/teloxide-macros/CHANGELOG.md
+++ b/crates/teloxide-macros/CHANGELOG.md
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased
+## 0.8.0 - 2024-08-16
+
### Added
- Now you can use `#[command(command_separator="sep")]` (default is a whitespace character) to set the separator between command and its arguments ([issue #897](https://github.com/teloxide/teloxide/issues/897))
diff --git a/crates/teloxide-macros/Cargo.toml b/crates/teloxide-macros/Cargo.toml
index 95cfb5a2..100ec9c3 100644
--- a/crates/teloxide-macros/Cargo.toml
+++ b/crates/teloxide-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "teloxide-macros"
-version = "0.7.1"
+version = "0.8.0"
description = "The teloxide's procedural macros"
rust-version.workspace = true
@@ -19,7 +19,7 @@ proc-macro = true
[dependencies]
quote = "1.0.7"
proc-macro2 = "1.0.67"
-syn = { version = "1.0.13", features = ["full"] }
+syn = { version = "1.0.13", features = ["full", "extra-traits"] }
heck = "0.4.0"
[package.metadata.release]
diff --git a/crates/teloxide/Cargo.toml b/crates/teloxide/Cargo.toml
index a752cd7e..6315e147 100644
--- a/crates/teloxide/Cargo.toml
+++ b/crates/teloxide/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "teloxide"
-version = "0.12.2"
+version = "0.13.0"
description = "An elegant Telegram bots framework for Rust"
rust-version.workspace = true
@@ -77,8 +77,8 @@ full = [
[dependencies]
-teloxide-core = { version = "0.9.1", path = "../teloxide-core", default-features = false }
-teloxide-macros = { version = "0.7.1", path = "../teloxide-macros", optional = true }
+teloxide-core = { version = "0.10", default-features = false }
+teloxide-macros = { version = "0.8", optional = true }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }