mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 09:49:07 +01:00
Release v0.7.0
This commit is contained in:
parent
e715105dda
commit
e5d08c168e
2 changed files with 10 additions and 4 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -6,14 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## unreleased
|
## unreleased
|
||||||
|
|
||||||
|
## 0.7.0 - 2022-10-06
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- Remove `derive(DialogueState)` macro
|
- `derive(DialogueState)` macro
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- `#[command(rename = "...")]` now always renames to `"..."`, to rename multiple commands using the same pattern, use `#[command(rename_rule = "snake_case")]` and the like.
|
- `#[command(rename = "...")]` now always renames to `"..."`; to rename multiple commands using the same pattern, use `#[command(rename_rule = "snake_case")]` and the like.
|
||||||
- `#[command(parse_with = ...)]` now requires a path, instead of a string, when specifying custom parsers
|
- `#[command(parse_with = ...)]` now requires a path, instead of a string, when specifying custom parsers.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `#[derive(BotCommands)]` even if the trait is not imported ([issue #717](https://github.com/teloxide/teloxide/issues/717)).
|
||||||
|
|
||||||
## 0.6.3 - 2022-07-19
|
## 0.6.3 - 2022-07-19
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "teloxide-macros"
|
name = "teloxide-macros"
|
||||||
version = "0.6.3"
|
version = "0.7.0"
|
||||||
description = "The teloxide's procedural macros"
|
description = "The teloxide's procedural macros"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
Loading…
Reference in a new issue