Skip to content

Commit

Permalink
version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed May 8, 2020
1 parent 6bf7a4e commit 93072e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ and add it to your project.

```sh
dependencies {
implementation 'com.starkbank.sdk:sdk-java:0.2.3'
implementation 'com.starkbank.sdk:sdk-java:0.3.0'
}
```

Expand All @@ -60,7 +60,7 @@ dependencies {
<dependency>
<groupId>com.starkbank.sdk</groupId>
<artifactId>sdk-java</artifactId>
<version>0.2.3</version>
<version>0.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'com.starkbank.sdk'
version '0.2.3'
version '0.3.0'

sourceCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/starkbank/utils/Response.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static String host(Project user, String version) {
}

private static String getUserAgent() {
String javaUserAgent = "Java-" + System.getProperty("java.version") + "-SDK-0.2.3";
String javaUserAgent = "Java-" + System.getProperty("java.version") + "-SDK-0.3.0";
return (userAgentOverride == null) ? javaUserAgent : userAgentOverride;
}
}

0 comments on commit 93072e3

Please sign in to comment.