Skip to content

Commit 8ba890d

Browse files
committed
Version 1.30.0
1 parent 506d17e commit 8ba890d

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Apple storage files
2+
*.DS_Store
3+
14
## Android default ignore
25
# Built application files
36
*.apk
@@ -40,3 +43,7 @@ test-output/
4043
appengine-web.xml
4144
cloudinary-android/src/androidTest/AndroidManifest.xml
4245

46+
##Tools
47+
/tools/cloudinary_url.txt
48+
/tools/History.md
49+

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
1.30.0 / 2022-02-02
3+
===================
4+
5+
Other Changes
6+
-------------
7+
* Update `README.md`
8+
* Add feature `SDK analytics`
9+
* Fix a bug where a publicId which contains 'v[num]' is considered to contain a version, therefore the version is skipped. (#242)
10+
211
1.29.0 / 2021-02-10
312
===================
413

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/
2727
## Version Support
2828
| SDK Version | Java 6+ |
2929
|----------------|---------|
30-
| 1.1.0 - 1.29.0 | V |
30+
| 1.1.0 - 1.30.0 | V |
3131

3232
## Installation
3333
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,11 +36,11 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor
3636
<dependency>
3737
<groupId>com.cloudinary</groupId>
3838
<artifactId>cloudinary-http44</artifactId>
39-
<version>1.29.0</version>
39+
<version>1.30.0</version>
4040
</dependency>
4141
```
4242

43-
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)
43+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.30.0/cloudinary-core-1.30.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.30.0/cloudinary-http44-1.30.0.jar)
4444
and see [build.gradle](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/build.gradle) for library dependencies.
4545

4646
## Usage
@@ -145,4 +145,4 @@ Cloudinary is a powerful media API for websites and mobile apps alike, Cloudinar
145145
- [Cloudinary Website](https://cloudinary.com)
146146

147147
## Licence
148-
Released under the MIT license.
148+
Released under the MIT license.

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

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

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

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.29.0
16+
version=1.30.0
1717

1818
gnsp.disableApplyOnlyOnRootProjectEnforcement=true
1919

0 commit comments

Comments
 (0)