From 46d65a271d88cfdf5cd4ba6826cdb2b90bfec059 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Wed, 29 Jul 2020 15:38:32 +0600 Subject: [PATCH 1/4] start 0.27.9 --- CHANGELOG.md | 2 ++ gradle.properties | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42534de13f..f92ad4d840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,8 @@ * `closePollExactAfter` * `closePollAfter` +### 0.27.9 + ### 0.27.8 * `TelegramBotAPI`: diff --git a/gradle.properties b/gradle.properties index 37399e77c9..545bfc58d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,6 +9,6 @@ ktor_version=1.3.2 javax_activation_version=1.1.1 library_group=com.github.insanusmokrassar -library_version=0.27.8 +library_version=0.27.9 gradle_bintray_plugin_version=1.8.4 From 8f85b4cba3d7c9e5b93ff5a73da5dd6324d6a554 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 3 Aug 2020 11:41:14 +0600 Subject: [PATCH 2/4] versions update --- CHANGELOG.md | 7 +++++++ gradle.properties | 6 +++--- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f92ad4d840..cfa2fd6595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,13 @@ ### 0.27.9 +* `Common` + * Versions updates: + * `Gradle Wrapper`: `6.5-all` -> `6.5.1-bin` + * `Coroutines`: `1.3.7` -> `1.3.8` + * `Klock`: `1.11.3` -> `1.11.14` + * `UUID`: `0.1.0` -> `0.1.1` + ### 0.27.8 * `TelegramBotAPI`: diff --git a/gradle.properties b/gradle.properties index 545bfc58d6..2920b51746 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,9 @@ kotlin.code.style=official kotlin_version=1.3.72 -kotlin_coroutines_version=1.3.7 +kotlin_coroutines_version=1.3.8 kotlin_serialisation_runtime_version=0.20.0 -klock_version=1.11.3 -uuid_version=0.1.0 +klock_version=1.11.14 +uuid_version=0.1.1 ktor_version=1.3.2 javax_activation_version=1.1.1 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3c46198fce..8db0d0d953 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip From e8e54a0aea1a116b55431c24dadfd224a3907460 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 3 Aug 2020 11:46:38 +0600 Subject: [PATCH 3/4] add labeler config for versions --- .github/labeler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index 989b5dd6a3..6640b8eb8e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -4,6 +4,7 @@ core: "TelegramBotAPI/**" # currently not work code: "**/*.kt" gradle: "**/*.gradle" +versions: "**/gradle.properties" markdown: - "**/*.md" - "!CHANGELOG.md" From e4b09032cdad3ef259668118410642ea9616fb6b Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 3 Aug 2020 12:15:59 +0600 Subject: [PATCH 4/4] deprecate PositionedInlineQueryResult --- .../InlineQueryResult/abstracts/PositionedInlineQueryResult.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/PositionedInlineQueryResult.kt b/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/PositionedInlineQueryResult.kt index 22387eced2..f385dc4fb5 100644 --- a/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/PositionedInlineQueryResult.kt +++ b/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/InlineQueries/InlineQueryResult/abstracts/PositionedInlineQueryResult.kt @@ -2,4 +2,5 @@ package com.github.insanusmokrassar.TelegramBotAPI.types.InlineQueries.InlineQue import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.Locationed +@Deprecated("Will be removed due to useless") interface PositionedInlineQueryResult : InlineQueryResult, Locationed \ No newline at end of file