Merge pull request #308 from teloxide/fix-message-dice-dice

Make 'dice' from 'MessageDice' public
This commit is contained in:
Temirkhan Myrzamadi 2020-10-30 13:35:59 +06:00 committed by GitHub
commit e01d31f8a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -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
[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
### Added

View file

@ -1061,7 +1061,7 @@ impl MediaVenue {
#[non_exhaustive]
pub struct MessageDice {
/// Message is a dice with random value from 1 to 6.
dice: Dice,
pub dice: Dice,
}
mod getters {