From 6556f54c2142efbe1cfdd0ff041bf65afd1b7478 Mon Sep 17 00:00:00 2001 From: aNNiMON Date: Mon, 2 Dec 2024 19:00:49 +0200 Subject: [PATCH] Release 8.0.0 --- README.md | 4 ++-- testbot-kotlin/build.gradle | 4 ++-- testbot/build.gradle | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3767f39..cc36bec 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ Enhanced Java telegram bots runner built on top of the [Telegram Bots](https://g - Add gradle dependency: ```groovy - implementation 'com.annimon:tgbots-module:7.10.0' + implementation 'com.annimon:tgbots-module:8.0.0' ``` - Or if you don't want to use webhooks: ```groovy - implementation ('com.annimon:tgbots-module:7.10.0') { + implementation ('com.annimon:tgbots-module:8.0.0') { exclude group: 'org.telegram', module: 'telegrambots-webhook' } ``` diff --git a/testbot-kotlin/build.gradle b/testbot-kotlin/build.gradle index 269463d..71f51e3 100644 --- a/testbot-kotlin/build.gradle +++ b/testbot-kotlin/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.annimon' -version '7.11.0-SNAPSHOT' +version '8.0.0-SNAPSHOT' mainClassName = 'com.annimon.testbotkt.TestBot' @@ -20,7 +20,7 @@ java { dependencies { implementation project(':module') - implementation 'org.slf4j:slf4j-simple:2.0.6' + implementation 'org.slf4j:slf4j-simple:2.0.16' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.0" } diff --git a/testbot/build.gradle b/testbot/build.gradle index c790917..64fad11 100644 --- a/testbot/build.gradle +++ b/testbot/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.annimon' -version '7.11.0-SNAPSHOT' +version '8.0.0-SNAPSHOT' mainClassName = 'com.annimon.testbot.TestBot' @@ -20,5 +20,5 @@ repositories { dependencies { implementation project(':module') - implementation 'org.slf4j:slf4j-simple:2.0.13' + implementation 'org.slf4j:slf4j-simple:2.0.16' }