Skip to content

Commit 99bb35d

Browse files
author
Sam Wierema
committed
Bump the version to 1.1.0
1 parent 187ff42 commit 99bb35d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ If you are using maven simply add the messagebird API to your dependencies like
2828
<dependency>
2929
<groupId>com.messagebird</groupId>
3030
<artifactId>messagebird-api</artifactId>
31-
<version>1.0.5</version>
31+
<version>1.1.0</version>
3232
</dependency>
3333
```
3434

3535
In case you are building without maven you still need maven to build the libraries but
3636
then simply copy the following jar's over to your project
3737

3838
```
39-
messagebird-api-1.0.5.jar
39+
messagebird-api-1.1.0.jar
4040
jackson-core-2.1.1.jar
4141
jackson-databind-2.1.1.jar
4242
jackson-mapper-asl-1.9.13.jar

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.messagebird</groupId>
88
<artifactId>messagebird-api</artifactId>
9-
<version>1.0.5</version>
9+
<version>1.1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>

api/src/main/java/com/messagebird/MessageBirdServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class MessageBirdServiceImpl implements MessageBirdService {
3232
private static final List<String> REQUESTMETHODS = Arrays.asList(new String[]{"GET", "POST", "DELETE"});
3333
private final String accessKey;
3434
private final String serviceUrl = "https://rest.messagebird.com";
35-
private final String clientVersion = "1.0.5";
35+
private final String clientVersion = "1.1.0";
3636
private final String userAgentString = "MessageBird/Java ApiClient/" + clientVersion;
3737
private Proxy proxy = null;
3838

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>com.messagebird</groupId>
2222
<artifactId>messagebird-api</artifactId>
23-
<version>1.0.5</version>
23+
<version>1.1.0</version>
2424
</dependency>
2525
</dependencies>
2626

0 commit comments

Comments
 (0)