Skip to content

Commit

Permalink
Release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Dec 2, 2024
1 parent 1894f85 commit 6556f54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```
Expand Down
4 changes: 2 additions & 2 deletions testbot-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.annimon'
version '7.11.0-SNAPSHOT'
version '8.0.0-SNAPSHOT'

mainClassName = 'com.annimon.testbotkt.TestBot'

Expand All @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions testbot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.annimon'
version '7.11.0-SNAPSHOT'
version '8.0.0-SNAPSHOT'

mainClassName = 'com.annimon.testbot.TestBot'

Expand All @@ -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'
}

0 comments on commit 6556f54

Please sign in to comment.