Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
javaes committed Dec 20, 2018
1 parent 65322ee commit f52f2f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Simply add to your pom.xml:
<dependency>
<groupId>me.figo</groupId>
<artifactId>sdk</artifactId>
<version>3.1.5</version>
<version>3.1.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>me.figo</groupId>
<artifactId>sdk</artifactId>
<version>3.1.7</version>
<version>3.1.8</version>
<packaging>jar</packaging>

<name>Figo Java SDK</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/figo/FigoApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public <T> T queryApi(String path, Object data, String method, Type typeOfT) thr
connection.setRequestProperty("Authorization", authorization);
connection.setRequestProperty("Accept", "application/json");
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("User-Agent", "Figo/Java 3.1.7");
connection.setRequestProperty("User-Agent", "Figo/Java 3.1.8");

// add payload
if (data != null) {
Expand Down

0 comments on commit f52f2f5

Please sign in to comment.