Skip to content

Commit 6549ec5

Browse files
authored
Merge branch 'master' into patch-1
2 parents 51fcd43 + 920cfbb commit 6549ec5

File tree

74 files changed

+1464
-884
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1464
-884
lines changed

.gitignore

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,10 @@ test-output/
3333
.classpath
3434
.project
3535

36+
# intellij
37+
.idea/
3638
*.iml
3739

3840
appengine-web.xml
41+
cloudinary-android/src/androidTest/AndroidManifest.xml
3942

40-
cloudinary-android-test/src/main/AndroidManifest.xml
41-
42-
# Maven
43-
44-
target/
45-
pom.xml.tag
46-
pom.xml.releaseBackup
47-
pom.xml.versionsBackup
48-
pom.xml.next
49-
release.properties
50-
dependency-reduced-pom.xml
51-
buildNumber.properties
52-
.mvn/timing.properties
53-
54-
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
55-
!/.mvn/wrapper/maven-wrapper.jar

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
language: android
2+
3+
android:
4+
components:
5+
- tools
6+
- platform-tools
7+
- tools
8+
- build-tools-25.0.2
9+
- android-25
10+
- extra-android-m2repository
11+
12+
before_cache:
13+
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
14+
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
15+
cache:
16+
directories:
17+
- $HOME/.gradle/caches/
18+
- $HOME/.gradle/wrapper/
19+
20+
jdk:
21+
- oraclejdk8
22+
23+
# Android build tools 25 require java 8 - until project separation java 7 tests are disabled
24+
# - oraclejdk7
25+
# - openjdk7
26+
27+
# Temporarily disabled, test fail because Hamcrest needs java 1.7
28+
# - openjdk6
29+
30+
# ciTest is configured to skip the various timeout tests that don't work in travis
31+
script: ./gradlew clean ciTest

CHANGELOG.md

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

2+
1.13.0 / 2017-06-12
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Add support for `format` in Responsive breakpoints transformation. (#78)
9+
* Add `url_suffix` support for private images. (#76)
10+
* Add `type` parameter to `Api.publishResource()` (#73)
11+
* Add support for fetch overlay/underlay (#69)
12+
* Add `deleteByToken` to `Uploader`.
13+
* Rename `deleteDerivedResourcesByTransformations` to `deleteDerivedByTransformation`
14+
* Fix `deleteStreamProfile` no-options overload.
15+
* Add support for *TravisCI* tests
16+
* Replace Maven with Gradle as build tool
17+
18+
Other changes
19+
-------------
20+
21+
* Parallelize tests.
22+
223
1.12.0 / 2017-05-01
324
===================
425

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
2929
<dependency>
3030
<groupId>com.cloudinary</groupId>
3131
<artifactId>cloudinary-http44</artifactId>
32-
<version>1.12.0</version>
32+
<version>1.13.0</version>
3333
</dependency>
3434
```
3535

36-
37-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.12.0/cloudinary-core-1.12.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.12.0/cloudinary-http44-1.12.0.jar)
36+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.13.0/cloudinary-core-1.13.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.13.0/cloudinary-http44-1.13.0.jar)
3837
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/pom.xml) for library dependencies.
3938

4039
## Try it right away

build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
buildscript {
2+
}
3+
4+
allprojects {
5+
apply plugin: 'maven'
6+
apply plugin: 'signing'
7+
8+
repositories {
9+
jcenter()
10+
mavenCentral()
11+
}
12+
13+
signing {
14+
sign configurations.archives
15+
}
16+
project.ext.set("publishGroupId", group)
17+
}
18+
19+
subprojects {
20+
tasks.withType(Test) {
21+
maxParallelForks = Runtime.runtime.availableProcessors()
22+
23+
// show standard out and standard error of the test JVM(s) on the console
24+
testLogging.showStandardStreams = true
25+
}
26+
}

cloudinary-android-test/pom.xml

Lines changed: 0 additions & 58 deletions
This file was deleted.

cloudinary-android-test/project.properties

Lines changed: 0 additions & 15 deletions
This file was deleted.
-4.05 KB
Binary file not shown.
-1.68 KB
Binary file not shown.
-2.51 KB
Binary file not shown.

0 commit comments

Comments
 (0)