Skip to content

Commit 209037e

Browse files
committedJan 20, 2025·
Version 2.1.0
·
2.3.02.1.0
1 parent 98f0260 commit 209037e

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed
 

‎CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.1.0 / 2025-01-20
2+
==================
3+
4+
* Fix Http client proxy
5+
* Fix Http client system properties support
6+
* Add Cloudinary constructor for `Configuration`
7+
* Fix Register strategy functions
8+
19
2.0.0 / 2024-09-29
210
==================
311

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/
2828
| SDK Version | Java 6+ | Java 8 |
2929
|----------------|---------|--------|
3030
| 1.1.0 - 1.39.0 | V | |
31-
| 2.0.0 | | V |
31+
| 2.0.0+ | | V |
3232

3333

3434

@@ -39,7 +39,7 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor
3939
<dependency>
4040
<groupId>com.cloudinary</groupId>
4141
<artifactId>cloudinary-http45</artifactId>
42-
<version>2.0.0</version>
42+
<version>2.1.0</version>
4343
</dependency>
4444
```
4545

‎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 = "2.0.0";
35+
public final static String VERSION = "2.1.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=2.0.0
16+
version=2.1.0
1717

1818
gnsp.disableApplyOnlyOnRootProjectEnforcement=true
1919

0 commit comments

Comments
 (0)
Please sign in to comment.