mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-24 23:57:38 +01:00
Merge pull request #308 from teloxide/fix-message-dice-dice
Make 'dice' from 'MessageDice' public
This commit is contained in:
commit
e01d31f8a2
2 changed files with 6 additions and 1 deletions
|
@ -25,6 +25,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
[issue 253]: https://github.com/teloxide/teloxide/issues/253
|
[issue 253]: https://github.com/teloxide/teloxide/issues/253
|
||||||
[pr 257]: https://github.com/teloxide/teloxide/pull/257
|
[pr 257]: https://github.com/teloxide/teloxide/pull/257
|
||||||
|
|
||||||
|
## [0.3.3] - 2020-10-30
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- The `dice` field from `MessageDice` is public now ([issue 306](https://github.com/teloxide/teloxide/issues/306))
|
||||||
|
|
||||||
## [0.3.2] - 2020-10-23
|
## [0.3.2] - 2020-10-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1061,7 +1061,7 @@ impl MediaVenue {
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
pub struct MessageDice {
|
pub struct MessageDice {
|
||||||
/// Message is a dice with random value from 1 to 6.
|
/// Message is a dice with random value from 1 to 6.
|
||||||
dice: Dice,
|
pub dice: Dice,
|
||||||
}
|
}
|
||||||
|
|
||||||
mod getters {
|
mod getters {
|
||||||
|
|
Loading…
Add table
Reference in a new issue