Skip to content

Commit

Permalink
Upgrade telegrambots API to 7.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Jul 15, 2024
1 parent 154bc27 commit edad514
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,17 @@ Enhanced Java telegram bots runner built on top of the [Telegram Bots](https://g
- Add gradle dependency:

```groovy
implementation 'com.annimon:tgbots-module:7.6.0'
implementation 'com.annimon:tgbots-module:7.7.0'
```
- Or if you don't want to use webhooks:
```groovy
implementation ('com.annimon:tgbots-module:7.7.0') {
exclude group: 'org.telegram', module: 'telegrambots-webhook'
}
```

- Implement `BotModule` interface:

```java
Expand Down
4 changes: 2 additions & 2 deletions module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.annimon'
version '7.6.0-SNAPSHOT'
version '7.7.0-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

java {
Expand All @@ -18,7 +18,7 @@ repositories {
mavenCentral()
}

ext.telegramBotsVersion = '7.6.0'
ext.telegramBotsVersion = '7.7.1'
ext.jacksonVersion = '2.17.1'
ext.junit5Version = '5.10.2'
ext.jaxbVersion = '2.3.1'
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0-SNAPSHOT'
version '7.7.0-SNAPSHOT'

mainClassName = 'com.annimon.testbotkt.TestBot'

Expand Down
2 changes: 1 addition & 1 deletion 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.6.0-SNAPSHOT'
version '7.7.0-SNAPSHOT'

mainClassName = 'com.annimon.testbot.TestBot'

Expand Down

0 comments on commit edad514

Please sign in to comment.