Skip to content

Commit 07b8c30

Browse files
author
Idan Harel
committed
1.0.8 hotfix release
1 parent fbe1482 commit 07b8c30

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This library is released on [maven central](http://central.maven.org/maven2/com/
1616
### Gradle
1717

1818
```
19-
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
19+
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
2020
```
2121

2222
### Maven
@@ -25,7 +25,7 @@ compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
2525
<dependency>
2626
<groupId>com.viber</groupId>
2727
<artifactId>viber-bot</artifactId>
28-
<version>1.0.7</version>
28+
<version>1.0.8</version>
2929
</dependency>
3030
```
3131

nano-httpd-sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
13+
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
1414
compile group: 'org.nanohttpd', name: 'nanohttpd', version: '2.3.1'
1515
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
1616
}

spring-boot-sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
13+
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
1414
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.4.2.RELEASE'
1515
compile group: 'javax.inject', name: 'javax.inject', version: '1'
1616
}

src/main/java/com/viber/bot/api/ViberClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ViberClient {
3333
static final String VIBER_AUTH_TOKEN_HEADER = "X-Viber-Auth-Token";
3434
static final String USER_AGENT_HEADER_FIELD = "User-Agent";
3535
static final String USER_AGENT_HEADER_VALUE = "ViberBot-Java/";
36-
static final String VIBER_LIBRARY_VERSION = "1.0.7";
36+
static final String VIBER_LIBRARY_VERSION = "1.0.8";
3737

3838
private static final String STATUS = "status";
3939
private static final int MAX_GET_ONLINE_IDS = 100;

0 commit comments

Comments
 (0)