Skip to content

Commit

Permalink
Version 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzanj committed Sep 12, 2019
1 parent 9d9d266 commit 48e64f7
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,4 +1,10 @@

1.24.0 / 2019-09-12
===================

* Add support for `cinemagraph_analysis` parameter. (#182)
* Rename Account API methods, add convenience overloads. (#181)

1.23.0 / 2019-08-15
===================

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-http44</artifactId>
<version>1.23.0</version>
<version>1.24.0</version>
</dependency>
```

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

## Try it right away
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.23.0";
public final static String VERSION = "1.24.0";
public final static String USER_AGENT = "CloudinaryJava/" + VERSION + " (Java " + System.getProperty("java.version") + ")";

public final Configuration config;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ [email protected]

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

0 comments on commit 48e64f7

Please sign in to comment.