Merge pull request #309 from teloxide/master

v0.3.3 (very big changes)
This commit is contained in:
Temirkhan Myrzamadi 2020-10-30 13:42:34 +06:00 committed by GitHub
commit 1c23bdd525
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 {