From 87bd7aefd2b4f79d4ceaf2927677c333d04f6d49 Mon Sep 17 00:00:00 2001 From: rubenlagus Date: Sun, 28 Jul 2019 21:27:12 +0100 Subject: [PATCH] Update version in poms --- Bots.ipr | 28 +++++++++---------- README.md | 8 +++--- TelegramBots.wiki/Changelog.md | 6 ++++ 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 | 5 ++-- telegrambots-chat-session-bot/README.md | 2 +- telegrambots-chat-session-bot/pom.xml | 5 ++-- telegrambots-extensions/README.md | 4 +-- telegrambots-extensions/pom.xml | 5 ++-- telegrambots-meta/pom.xml | 3 +- telegrambots-spring-boot-starter/pom.xml | 5 ++-- telegrambots/pom.xml | 5 ++-- 15 files changed, 47 insertions(+), 47 deletions(-) diff --git a/Bots.ipr b/Bots.ipr index 5a589732..1cd4fbbe 100644 --- a/Bots.ipr +++ b/Bots.ipr @@ -22,10 +22,10 @@ - - + + @@ -1437,37 +1437,37 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/README.md b/README.md index b6402570..5d45b712 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.1 + 4.4.0 ``` ```gradle - compile "org.telegram:telegrambots:4.3.1" + compile "org.telegram:telegrambots:4.4.0" ``` - 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) + 2. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/4.4.0) + 3. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/4.4.0) In order to use Long Polling mode, just create your own bot extending `org.telegram.telegrambots.bots.TelegramLongPollingBot`. diff --git a/TelegramBots.wiki/Changelog.md b/TelegramBots.wiki/Changelog.md index 27d9a2e6..15ffff3c 100644 --- a/TelegramBots.wiki/Changelog.md +++ b/TelegramBots.wiki/Changelog.md @@ -1,3 +1,9 @@ +### 4.4.0 ### +1. Update Api version [4.4]() +2. Removed BotLogger, replaced with [log4j2](https://logging.apache.org/log4j/2.x/) +3. Library is now built using [Java11](https://www.oracle.com/technetwork/java/javase/overview/index.html) +4. Updated dependencies to use last versions + ### 4.3.1 ### 1. Fix bug #625 2. Moved ApiResponse to different package, deprecated old one (will be removed in next mayor version) diff --git a/TelegramBots.wiki/Getting-Started.md b/TelegramBots.wiki/Getting-Started.md index 9bcfeb7d..e0878bbe 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.1 + 4.4.0 ``` * With **Gradle**: ```groovy - compile group: 'org.telegram', name: 'telegrambots', version: '4.3.1' + compile group: 'org.telegram', name: 'telegrambots', version: '4.4.0' ``` 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 b5986964..3aa89b8a 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.1 + 4.4.0 ``` * **Gradle** ```groovy - compile group: 'org.telegram', name: 'telegrambots-abilities', version: '4.3.1' + compile group: 'org.telegram', name: 'telegrambots-abilities', version: 'permissions' ``` * [JitPack](https://jitpack.io/#rubenlagus/TelegramBots) diff --git a/pom.xml b/pom.xml index 859d1922..2e8b8c12 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.telegram Bots pom - 4.3.1 + 4.4.0 telegrambots diff --git a/telegrambots-abilities/README.md b/telegrambots-abilities/README.md index 520481c2..d43fa96c 100644 --- a/telegrambots-abilities/README.md +++ b/telegrambots-abilities/README.md @@ -18,19 +18,19 @@ Usage org.telegram telegrambots-abilities - 4.3.1 + 4.4.0 ``` **Gradle** ```gradle - compile "org.telegram:telegrambots-abilities:4.3.1" + compile "org.telegram:telegrambots-abilities:4.4.0" ``` -**JitPack** - [JitPack](https://jitpack.io/#rubenlagus/TelegramBots/v4.3.1) +**JitPack** - [JitPack](https://jitpack.io/#rubenlagus/TelegramBots/v4.4.0) -**Plain imports** - [Here](https://github.com/rubenlagus/TelegramBots/releases/tag/v4.3.1) +**Plain imports** - [Here](https://github.com/rubenlagus/TelegramBots/releases/tag/v4.4.0) Motivation ---------- diff --git a/telegrambots-abilities/pom.xml b/telegrambots-abilities/pom.xml index 15c9bd1c..9f8dc9b5 100644 --- a/telegrambots-abilities/pom.xml +++ b/telegrambots-abilities/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambots-abilities - ${project.parent.version} jar Telegram Ability Bot @@ -85,7 +84,7 @@ org.telegram telegrambots - 4.3.1 + 4.4.0 org.apache.commons diff --git a/telegrambots-chat-session-bot/README.md b/telegrambots-chat-session-bot/README.md index 6cee2c9d..212ceb0a 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.1 + 4.4.0 ``` diff --git a/telegrambots-chat-session-bot/pom.xml b/telegrambots-chat-session-bot/pom.xml index 19434749..3765c8f4 100644 --- a/telegrambots-chat-session-bot/pom.xml +++ b/telegrambots-chat-session-bot/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambots-chat-session-bot - ${project.parent.version} jar Telegram Bots Chat Session Bot @@ -85,7 +84,7 @@ org.telegram telegrambots - 4.3.1 + 4.4.0 diff --git a/telegrambots-extensions/README.md b/telegrambots-extensions/README.md index 8b1d55c3..6e1d2173 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.1 + 4.4.0 ``` 2. Using Gradle: ```gradle - compile "org.telegram:telegrambotsextensions:4.3.1" + compile "org.telegram:telegrambotsextensions:4.4.0" ``` \ No newline at end of file diff --git a/telegrambots-extensions/pom.xml b/telegrambots-extensions/pom.xml index f89087d6..b5990489 100644 --- a/telegrambots-extensions/pom.xml +++ b/telegrambots-extensions/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambotsextensions - ${project.parent.version} jar Telegram Bots Extensions @@ -76,7 +75,7 @@ org.telegram telegrambots - 4.3.1 + 4.4.0 diff --git a/telegrambots-meta/pom.xml b/telegrambots-meta/pom.xml index a9300be3..c2eb4616 100644 --- a/telegrambots-meta/pom.xml +++ b/telegrambots-meta/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambots-meta - ${project.parent.version} jar Telegram Bots Meta diff --git a/telegrambots-spring-boot-starter/pom.xml b/telegrambots-spring-boot-starter/pom.xml index 4bda6287..78efa4a1 100644 --- a/telegrambots-spring-boot-starter/pom.xml +++ b/telegrambots-spring-boot-starter/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambots-spring-boot-starter - ${project.parent.version} jar Telegram Bots Spring Boot Starter @@ -79,7 +78,7 @@ org.telegram telegrambots - 4.3.1 + 4.4.0 org.springframework.boot diff --git a/telegrambots/pom.xml b/telegrambots/pom.xml index 507cd794..8d5709c7 100644 --- a/telegrambots/pom.xml +++ b/telegrambots/pom.xml @@ -7,11 +7,10 @@ org.telegram Bots - 4.3.1 + 4.4.0 telegrambots - ${project.parent.version} jar Telegram Bots @@ -96,7 +95,7 @@ org.telegram telegrambots-meta - 4.3.1 + 4.4.0 com.fasterxml.jackson.core