Skip to content

Commit

Permalink
Version 1.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Dec 4, 2023
1 parent 759b9e7 commit f4fdd10
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.36.0 / 2023-12-04
===================

* Fix encode url for fetch layer
* Add support to use fetch format

1.35.0 / 2023-10-11
===================

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/
## Version Support
| SDK Version | Java 6+ |
|----------------|---------|
| 1.1.0 - 1.35.0 | V |
| 1.1.0 - 1.36.0 | V |

## Installation
The cloudinary_java library is available in [Maven Central](https://mvnrepository.com/artifact/com.cloudinary/cloudinary-core). To use it, add the following dependency to your pom.xml :
Expand All @@ -36,7 +36,7 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-http44</artifactId>
<version>1.35.0</version>
<version>1.36.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Cloudinary {
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;

public final static String VERSION = "1.35.0";
public final static String VERSION = "1.36.0";
static String USER_AGENT_PREFIX = "CloudinaryJava";
public final static String USER_AGENT_JAVA_VERSION = "(Java " + System.getProperty("java.version") + ")";

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ developerEmail=info@cloudinary.com

# These two properties must use these exact names to be compatible with 'gradle install' plugin.
group=com.cloudinary
version=1.35.0
version=1.36.0

gnsp.disableApplyOnlyOnRootProjectEnforcement=true

Expand Down

0 comments on commit f4fdd10

Please # to comment.