Skip to content

Commit

Permalink
Merge pull request #30 from javadev/upgrade-okhttp
Browse files Browse the repository at this point in the history
Upgrade Okhttp to version 4.12.0
  • Loading branch information
rkoopmans authored Jan 5, 2024
2 parents 9df296a + ccb0b9a commit 5e1bbcb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 1.8.5
* Upgrade Okhttp to version 4.12.0

## 1.8.4
* Upgrade Okio to version 3.7.0.
* Upgrade Okio to version 3.7.0

## 1.8.3
* Fix for requests with empty body
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Install the API client via Maven:
<dependency>
<groupId>com.tinify</groupId>
<artifactId>tinify</artifactId>
<version>1.8.4</version>
<version>1.8.5</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.tinify</groupId>
<artifactId>tinify</artifactId>
<version>1.8.4</version>
<version>1.8.5</version>
<name>Tinify</name>
<description>Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.</description>
<url>https://tinify.com</url>
<packaging>bundle</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<okhttp.version>3.14.9</okhttp.version>
<okhttp.version>4.12.0</okhttp.version>
<gson.version>2.9.0</gson.version>
</properties>
<licenses>
Expand Down Expand Up @@ -141,7 +141,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.14.9</version>
<version>${okhttp.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 5e1bbcb

Please sign in to comment.