From 7c64bf5f1b11031959916033c22d47e9a4681e81 Mon Sep 17 00:00:00 2001 From: Ruben Bermudez Date: Sat, 8 Jun 2019 20:39:08 +0100 Subject: [PATCH] Update version --- README.md | 8 ++++---- TelegramBots.wiki/Getting-Started.md | 4 ++-- TelegramBots.wiki/abilities/Simple-Example.md | 4 ++-- pom.xml | 2 +- telegrambots-abilities/README.md | 8 ++++---- telegrambots-abilities/pom.xml | 4 ++-- telegrambots-chat-session-bot/README.md | 2 +- telegrambots-chat-session-bot/pom.xml | 4 ++-- telegrambots-extensions/README.md | 4 ++-- telegrambots-extensions/pom.xml | 4 ++-- telegrambots-meta/pom.xml | 2 +- telegrambots-spring-boot-starter/pom.xml | 4 ++-- telegrambots/pom.xml | 4 ++-- 13 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 7f22def8..b6402570 100644 --- a/README.md +++ b/README.md @@ -27,16 +27,16 @@ Just import add the library to your project with one of these options: org.telegram telegrambots - 4.3 + 4.3.1 ``` ```gradle - compile "org.telegram:telegrambots:4.3" + compile "org.telegram:telegrambots:4.3.1" ``` - 2. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/4.3) - 3. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/4.3) + 2. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/4.3.1) + 3. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/4.3.1) In order to use Long Polling mode, just create your own bot extending `org.telegram.telegrambots.bots.TelegramLongPollingBot`. diff --git a/TelegramBots.wiki/Getting-Started.md b/TelegramBots.wiki/Getting-Started.md index 15329753..9bcfeb7d 100644 --- a/TelegramBots.wiki/Getting-Started.md +++ b/TelegramBots.wiki/Getting-Started.md @@ -11,13 +11,13 @@ First you need ot get the library and add it to your project. There are few poss org.telegram telegrambots - 4.3 + 4.3.1 ``` * With **Gradle**: ```groovy - compile group: 'org.telegram', name: 'telegrambots', version: '4.3' + compile group: 'org.telegram', name: 'telegrambots', version: '4.3.1' ``` 2. Don't like **Maven Central Repository**? It can also be taken from [Jitpack](https://jitpack.io/#rubenlagus/TelegramBots). diff --git a/TelegramBots.wiki/abilities/Simple-Example.md b/TelegramBots.wiki/abilities/Simple-Example.md index 08cd72f3..b5986964 100644 --- a/TelegramBots.wiki/abilities/Simple-Example.md +++ b/TelegramBots.wiki/abilities/Simple-Example.md @@ -9,12 +9,12 @@ As with any Java project, you will need to set your dependencies. org.telegram telegrambots-abilities - 4.3 + 4.3.1 ``` * **Gradle** ```groovy - compile group: 'org.telegram', name: 'telegrambots-abilities', version: '4.3' + compile group: 'org.telegram', name: 'telegrambots-abilities', version: '4.3.1' ``` * [JitPack](https://jitpack.io/#rubenlagus/TelegramBots) diff --git a/pom.xml b/pom.xml index 52dfbb1a..ad35c9ed 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.telegram Bots pom - 4.3 + 4.3.1 telegrambots diff --git a/telegrambots-abilities/README.md b/telegrambots-abilities/README.md index dae9c753..520481c2 100644 --- a/telegrambots-abilities/README.md +++ b/telegrambots-abilities/README.md @@ -18,19 +18,19 @@ Usage org.telegram telegrambots-abilities - 4.3 + 4.3.1 ``` **Gradle** ```gradle - compile "org.telegram:telegrambots-abilities:4.3" + compile "org.telegram:telegrambots-abilities:4.3.1" ``` -**JitPack** - [JitPack](https://jitpack.io/#rubenlagus/TelegramBots/v4.3) +**JitPack** - [JitPack](https://jitpack.io/#rubenlagus/TelegramBots/v4.3.1) -**Plain imports** - [Here](https://github.com/rubenlagus/TelegramBots/releases/tag/v4.3) +**Plain imports** - [Here](https://github.com/rubenlagus/TelegramBots/releases/tag/v4.3.1) Motivation ---------- diff --git a/telegrambots-abilities/pom.xml b/telegrambots-abilities/pom.xml index 45e5f497..f8e1194b 100644 --- a/telegrambots-abilities/pom.xml +++ b/telegrambots-abilities/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambots-abilities - 4.3 + 4.3.1 jar Telegram Ability Bot @@ -73,7 +73,7 @@ org.telegram telegrambots - 4.3 + 4.3.1 org.apache.commons diff --git a/telegrambots-chat-session-bot/README.md b/telegrambots-chat-session-bot/README.md index 15f4eda3..6cee2c9d 100644 --- a/telegrambots-chat-session-bot/README.md +++ b/telegrambots-chat-session-bot/README.md @@ -15,7 +15,7 @@ Usage org.telegram telegrambots-chat-session-bot - 4.3 + 4.3.1 ``` diff --git a/telegrambots-chat-session-bot/pom.xml b/telegrambots-chat-session-bot/pom.xml index 3ce0bb3d..058b2f00 100644 --- a/telegrambots-chat-session-bot/pom.xml +++ b/telegrambots-chat-session-bot/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambots-chat-session-bot - 4.3 + 4.3.1 jar Telegram Bots Chat Session Bot @@ -73,7 +73,7 @@ org.telegram telegrambots - 4.3 + 4.3.1 diff --git a/telegrambots-extensions/README.md b/telegrambots-extensions/README.md index 3b5f1d4a..8b1d55c3 100644 --- a/telegrambots-extensions/README.md +++ b/telegrambots-extensions/README.md @@ -16,12 +16,12 @@ Just import add the library to your project with one of these options: org.telegram telegrambotsextensions - 4.3 + 4.3.1 ``` 2. Using Gradle: ```gradle - compile "org.telegram:telegrambotsextensions:4.3" + compile "org.telegram:telegrambotsextensions:4.3.1" ``` \ No newline at end of file diff --git a/telegrambots-extensions/pom.xml b/telegrambots-extensions/pom.xml index e347a79a..92863d35 100644 --- a/telegrambots-extensions/pom.xml +++ b/telegrambots-extensions/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambotsextensions - 4.3 + 4.3.1 jar Telegram Bots Extensions @@ -65,7 +65,7 @@ org.telegram telegrambots - 4.3 + 4.3.1 diff --git a/telegrambots-meta/pom.xml b/telegrambots-meta/pom.xml index 3758ca7d..5162dd71 100644 --- a/telegrambots-meta/pom.xml +++ b/telegrambots-meta/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambots-meta - 4.3 + 4.3.1 jar Telegram Bots Meta diff --git a/telegrambots-spring-boot-starter/pom.xml b/telegrambots-spring-boot-starter/pom.xml index 277c15a9..f6903d70 100644 --- a/telegrambots-spring-boot-starter/pom.xml +++ b/telegrambots-spring-boot-starter/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambots-spring-boot-starter - 4.3 + 4.3.1 jar Telegram Bots Spring Boot Starter @@ -67,7 +67,7 @@ org.telegram telegrambots - 4.3 + 4.3.1 org.springframework.boot diff --git a/telegrambots/pom.xml b/telegrambots/pom.xml index 41d06add..9f85279e 100644 --- a/telegrambots/pom.xml +++ b/telegrambots/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.telegram telegrambots - 4.3 + 4.3.1 jar Telegram Bots @@ -84,7 +84,7 @@ org.telegram telegrambots-meta - 4.3 + 4.3.1 com.fasterxml.jackson.core