Skip to content

Commit

Permalink
1.0.8 hotfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
Idan Harel committed Jan 22, 2017
1 parent fbe1482 commit 07b8c30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This library is released on [maven central](http://central.maven.org/maven2/com/
### Gradle

```
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
```

### Maven
Expand All @@ -25,7 +25,7 @@ compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
<dependency>
<groupId>com.viber</groupId>
<artifactId>viber-bot</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion nano-httpd-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
compile group: 'org.nanohttpd', name: 'nanohttpd', version: '2.3.1'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
}
2 changes: 1 addition & 1 deletion spring-boot-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
compile group: 'com.viber', name: 'viber-bot', version: '1.0.7'
compile group: 'com.viber', name: 'viber-bot', version: '1.0.8'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.4.2.RELEASE'
compile group: 'javax.inject', name: 'javax.inject', version: '1'
}
2 changes: 1 addition & 1 deletion src/main/java/com/viber/bot/api/ViberClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ViberClient {
static final String VIBER_AUTH_TOKEN_HEADER = "X-Viber-Auth-Token";
static final String USER_AGENT_HEADER_FIELD = "User-Agent";
static final String USER_AGENT_HEADER_VALUE = "ViberBot-Java/";
static final String VIBER_LIBRARY_VERSION = "1.0.7";
static final String VIBER_LIBRARY_VERSION = "1.0.8";

private static final String STATUS = "status";
private static final int MAX_GET_ONLINE_IDS = 100;
Expand Down

0 comments on commit 07b8c30

Please sign in to comment.