Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Sep 29, 2024
1 parent 6bb07c2 commit 94f8977
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2.0.0 / 2024-09-29
==================

* Bump minimum Java version to 8
* Secure true by default
* Add `auto_chaptering` and `auto_transcription` to upload API
* New Http client
* Add support for update metadata field set default disabled

1.39.0 / 2024-07-14
===================

Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/
- [Upload assets to cloud](https://cloudinary.com/documentation/java_image_and_video_upload)

## Version Support
| SDK Version | Java 6+ |
|----------------|---------|
| 1.1.0 - 1.39.0 | V |
| SDK Version | Java 6+ | Java 8 |
|----------------|---------|--------|
| 1.1.0 - 1.39.0 | V | |
| 2.0.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 +39,7 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-http45</artifactId>
<version>1.39.0</version>
<version>2.0.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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.39.0";
public final static String VERSION = "2.0.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 @@ [email protected]

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

gnsp.disableApplyOnlyOnRootProjectEnforcement=true

Expand Down

0 comments on commit 94f8977

Please sign in to comment.