Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed May 13, 2020
1 parent 4482fd7 commit c6e4d73
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:0.3.0'
implementation 'com.starkbank:sdk:0.4.0'
}
```

Expand All @@ -60,7 +60,7 @@ dependencies {
<dependency>
<groupId>com.starkbank</groupId>
<artifactId>sdk</artifactId>
<version>0.3.0</version>
<version>0.4.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'
version '0.3.0'
version '0.4.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.3.0";
String javaUserAgent = "Java-" + System.getProperty("java.version") + "-SDK-0.4.0";
return (userAgentOverride == null) ? javaUserAgent : userAgentOverride;
}
}

0 comments on commit c6e4d73

Please sign in to comment.