From c9edbbf7af79612a8366c31c1fde32f9e3897cc0 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Sun, 4 Oct 2020 16:52:00 +0600 Subject: [PATCH] migration onto major changes 0.29.0 --- CHANGELOG.md | 38 +++++++++++++++++++------------------- gradle.properties | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaffec0ff7..ab8ea5a7b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,26 @@ # TelegramBotAPI changelog +## 0.29.0 + +* **THIS VERSION CONTAINS BREAKING CHANGES** + +* `TelegramBotAPI-core`: + * Now in forward info you can get `ForwardFromSupergroupInfo` + * **BREAKING CHANGE** `SendVoice` factory function has changed its signature: now it have now `thumb` + (according to the [documentation](https://core.telegram.org/bots/api#sendvoice)) +* `TelegramBotAPI-extensions-api`: + * ALL REQUESTS EXECUTOR USAGES WERE REPLACED WITH `TelegramBot` TYPEALIAS. It should not bring any break changes + * Internal changes of `sendRegularPoll` and `sendQuizPoll` extensions + * Variable `defaultLivePeriodDelayMillis` now is public + * All `send` extensions for `TelegramBot` got their `reply` variations (issue [#144](https://github.com/InsanusMokrassar/TelegramBotAPI/issues/144)) + * A lot of `send` extensions for `TelegramBot` got their variation with `Chat` instead of `ChatIdentifier` + ## 0.28.0 -**THIS VERSION CONTAINS BREAKING CHANGES** - -***PROJECT PACKAGES WERE CHANGED*** - -* Project `TelegramBotAPI` -> `TelegramBotAPI-core` -* Project `TelegramBotAPI-all` -> `TelegramBotAPI` +* **THIS VERSION CONTAINS BREAKING CHANGES** +* ***PROJECT PACKAGES WERE CHANGED*** + * Project `TelegramBotAPI` -> `TelegramBotAPI-core` + * Project `TelegramBotAPI-all` -> `TelegramBotAPI` * `Common`: * Version updates: @@ -41,19 +54,6 @@ * Several extensions for downloading of files: * `HttpClient#loadFile` * `PathedFile#download` - -### 0.28.5 - -* `TelegramBotAPI-core`: - * Now in forward info you can get `ForwardFromSupergroupInfo` - * **BREAKING CHANGE** `SendVoice` factory function has changed its signature: now it have now `thumb` - (according to the [documentation](https://core.telegram.org/bots/api#sendvoice)) -* `TelegramBotAPI-extensions-api`: - * ALL REQUESTS EXECUTOR USAGES WERE REPLACED WITH `TelegramBot` TYPEALIAS. It should not bring any break changes - * Internal changes of `sendRegularPoll` and `sendQuizPoll` extensions - * Variable `defaultLivePeriodDelayMillis` now is public - * All `send` extensions for `TelegramBot` got their `reply` variations (issue [#144](https://github.com/InsanusMokrassar/TelegramBotAPI/issues/144)) - * A lot of `send` extensions for `TelegramBot` got their variation with `Chat` instead of `ChatIdentifier` ### 0.28.4 diff --git a/gradle.properties b/gradle.properties index 4d0f15a631..e62d63a7ad 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,7 +15,7 @@ ktor_version=1.4.1 javax_activation_version=1.1.1 library_group=com.github.insanusmokrassar -library_version=0.28.5 +library_version=0.29.0 gradle_bintray_plugin_version=1.8.5 github_release_plugin_version=2.2.12