Skip to content

Commit 94f8977

Browse files
committed
Version 2.0.0
1 parent 6bb07c2 commit 94f8977

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2.0.0 / 2024-09-29
2+
==================
3+
4+
* Bump minimum Java version to 8
5+
* Secure true by default
6+
* Add `auto_chaptering` and `auto_transcription` to upload API
7+
* New Http client
8+
* Add support for update metadata field set default disabled
9+
110
1.39.0 / 2024-07-14
211
===================
312

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/
2525
- [Upload assets to cloud](https://cloudinary.com/documentation/java_image_and_video_upload)
2626

2727
## Version Support
28-
| SDK Version | Java 6+ |
29-
|----------------|---------|
30-
| 1.1.0 - 1.39.0 | V |
28+
| SDK Version | Java 6+ | Java 8 |
29+
|----------------|---------|--------|
30+
| 1.1.0 - 1.39.0 | V | |
31+
| 2.0.0 | | V |
32+
33+
3134

3235
## Installation
3336
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 :
@@ -36,7 +39,7 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor
3639
<dependency>
3740
<groupId>com.cloudinary</groupId>
3841
<artifactId>cloudinary-http45</artifactId>
39-
<version>1.39.0</version>
42+
<version>2.0.0</version>
4043
</dependency>
4144
```
4245

cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Cloudinary {
3232
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
3333
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;
3434

35-
public final static String VERSION = "1.39.0";
35+
public final static String VERSION = "2.0.0";
3636
static String USER_AGENT_PREFIX = "CloudinaryJava";
3737
public final static String USER_AGENT_JAVA_VERSION = "(Java " + System.getProperty("java.version") + ")";
3838

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ developerEmail=info@cloudinary.com
1313

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

1818
gnsp.disableApplyOnlyOnRootProjectEnforcement=true
1919

0 commit comments

Comments
 (0)