Skip to content

Commit 97a54d2

Browse files
committed
Version 1.29.0
1 parent 480518a commit 97a54d2

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11

2+
1.29.0 / 2021-02-10
3+
===================
4+
5+
New functionality
6+
-----------------
7+
* Allow setting the user agent (#235)
8+
* Add support for Apache http-client 4.5 (#234)
9+
10+
Other changes
11+
-------------
12+
* Fix test name in `ExpressionTest` (#233)
13+
14+
215
1.28.1 / 2021-02-03
316
==================
417

518
* Fix `api` reuse bug when calling `cloudinary.search()` (#232)
619

7-
1.28.1 / 2021-02-01
20+
1.28.0 / 2021-02-01
821
==================
922

1023
* Add `oauth` support to Admin Api calls. (#230)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
3434
<dependency>
3535
<groupId>com.cloudinary</groupId>
3636
<artifactId>cloudinary-http44</artifactId>
37-
<version>1.28.1</version>
37+
<version>1.29.0</version>
3838
</dependency>
3939
```
4040

41-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.28.1/cloudinary-core-1.28.1.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.28.1/cloudinary-http44-1.28.1.jar)
41+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.29.0/cloudinary-core-1.29.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.29.0/cloudinary-http44-1.29.0.jar)
4242
and see [build.gradle](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/build.gradle) for library dependencies.
4343

4444
## Try it right away

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

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

40-
public final static String VERSION = "1.28.1";
40+
public final static String VERSION = "1.29.0";
4141
static String USER_AGENT_PREFIX = "CloudinaryJava";
4242
public final static String USER_AGENT_JAVA_VERSION = "(Java " + System.getProperty("java.version") + ")";
4343

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.28.1
16+
version=1.29.0
1717

1818
gnsp.disableApplyOnlyOnRootProjectEnforcement=true
1919

0 commit comments

Comments
 (0)