diff --git a/CHANGELOG.md b/CHANGELOG.md index 3afd074d..e03b4ea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/types/message.rs b/src/types/message.rs index 6404ebad..79aa8366 100644 --- a/src/types/message.rs +++ b/src/types/message.rs @@ -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 {