Skip to content

Commit 0c1a02a

Browse files
author
Sam Wierema
committed
Bump the version to 1.0.5
1 parent 29e33d0 commit 0c1a02a

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.4</version>
31+
<version>1.0.5</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.4.jar
39+
messagebird-api-1.0.5.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.4</version>
9+
<version>1.0.5</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
@@ -35,7 +35,7 @@ public class MessageBirdServiceImpl implements MessageBirdService {
3535
private static final List<String> REQUESTMETHODS = Arrays.asList(new String[]{"GET", "POST", "DELETE"});
3636
private final String accessKey;
3737
private final String serviceUrl = "https://rest.messagebird.com";
38-
private final String clientVersion = "1.0.4";
38+
private final String clientVersion = "1.0.5";
3939
private final String userAgentString = "MessageBird/Java ApiClient/" + clientVersion;
4040
private Proxy proxy = null;
4141

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.4</version>
23+
<version>1.0.5</version>
2424
</dependency>
2525
</dependencies>
2626

0 commit comments

Comments
 (0)