Skip to content

Cut 3.0.12 #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

<groupId>com.messagebird</groupId>
<artifactId>messagebird-api</artifactId>
<version>3.0.11</version> <!--
<version>3.0.12</version> <!--
are you going to bump a major number?
then you are pleased to replace com.messagebird.Base64 with some library, for example net.iharder.base64
-->
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ public class MessageBirdServiceImpl implements MessageBirdService {

private final String accessKey;
private final String serviceUrl;
private final String clientVersion = "3.0.11";
private final String clientVersion = "3.0.12";
private final String userAgentString;
private Proxy proxy = null;

4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

<groupId>com.messagebird</groupId>
<artifactId>examples</artifactId>
<version>3.0.11</version>
<version>3.0.12</version>

<licenses>
<license>
@@ -20,7 +20,7 @@
<dependency>
<groupId>com.messagebird</groupId>
<artifactId>messagebird-api</artifactId>
<version>3.0.11</version>
<version>3.0.12</version>
<scope>compile</scope>
</dependency>
</dependencies>
1 change: 1 addition & 0 deletions examples/src/main/java/ExampleSendConversationMessage.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import com.messagebird.MessageBirdClient;
import com.messagebird.MessageBirdService;
import com.messagebird.MessageBirdServiceImpl;
import com.messagebird.exceptions.GeneralException;
import com.messagebird.exceptions.UnauthorizedException;