Skip to content

Commit d8a12b0

Browse files
committed
bump up 1.3.1
1 parent a6a2b62 commit d8a12b0

File tree

11 files changed

+25
-215
lines changed

11 files changed

+25
-215
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
Version 1.3.1 *(2015-11-27)*
5+
----------------------------
6+
7+
Change the renderscriptTargetApi down to 20.
8+
Warning:Renderscript support mode is not currently supported with renderscript target 21+
9+
10+
fix: memory leak.
11+
412
Version 1.3.0 *(2015-11-10)*
513
----------------------------
614

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repositories {
3333
}
3434
3535
dependencies {
36-
compile 'jp.wasabeef:glide-transformations:1.3.0'
36+
compile 'jp.wasabeef:glide-transformations:1.3.1'
3737
// If you want to use the GPU Filters
3838
compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.3.0'
3939
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.5.0-beta2'
9-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3.1'
8+
classpath 'com.android.tools.build:gradle:2.0.0-alpha1'
9+
classpath 'com.novoda:bintray-release:0.3.4'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
defaultConfig {
88
minSdkVersion MIN_SDK_VERSION as int
99
targetSdkVersion TARGET_SDK_VERSION as int
10-
versionCode VERSION_CODE as int
10+
versionCode "git rev-list origin/master --count".execute().text.toInteger()
1111
versionName VERSION_NAME
1212

1313
// Warning:Renderscript support mode is not currently supported with renderscript target 21+

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
VERSION_NAME=1.3.0
2-
VERSION_CODE=13
1+
VERSION_NAME=1.3.1
32
GROUP=jp.wasabeef
43
ARTIFACT_ID=glide-transformations
54

65
COMPILE_SDK_VERSION=23
76
BUILD_TOOLS_VERSION=23.0.2
87
TARGET_SDK_VERSION=23
8+
# Warning:Renderscript support mode is not currently supported with renderscript target 21+
99
RENDERSCRIPT_TARGET_API=20
1010
MIN_SDK_VERSION=11
1111

@@ -23,6 +23,6 @@ [email protected]
2323
POM_DEVELOPER_URL=wasabeef.jp
2424
ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues
2525

26-
SUPPORT_PACKAGE_VERSION=23.0.1
26+
SUPPORT_PACKAGE_VERSION=23.1.1
2727
GLIDE_VERSION=3.6.1
2828
GPUIMAGE_VERSION=1.3.0

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip

transformations/android-artifacts.gradle

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

transformations/bintray-publish.gradle

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

transformations/build.gradle

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23

34
android {
45
compileSdkVersion COMPILE_SDK_VERSION as int
@@ -7,7 +8,7 @@ android {
78
defaultConfig {
89
minSdkVersion MIN_SDK_VERSION as int
910
targetSdkVersion TARGET_SDK_VERSION as int
10-
versionCode VERSION_CODE as int
11+
versionCode "git rev-list origin/master --count".execute().text.toInteger()
1112
versionName VERSION_NAME
1213

1314
// Warning:Renderscript support mode is not currently supported with renderscript target 21+
@@ -21,24 +22,11 @@ dependencies {
2122
provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}"
2223
}
2324

24-
android.libraryVariants.all { variant ->
25-
if (variant.buildType.isDebuggable()) {
26-
return; // Skip debug builds.
27-
}
28-
task("javadoc${variant.name.capitalize()}", type: Javadoc) {
29-
description "Generates Javadoc for $variant.name."
30-
source = variant.javaCompile.source
31-
ext.androidJar = System.getenv("ANDROID_HOME") + "/platforms/${android.compileSdkVersion}/android.jar"
32-
classpath = files(variant.javaCompile.classpath.files) + files(ext.androidJar)
33-
}
34-
35-
task("bundleJavadoc${variant.name.capitalize()}", type: Jar) {
36-
description "Bundles Javadoc into zip for $variant.name."
37-
classifier = "javadoc"
38-
from tasks["javadoc${variant.name.capitalize()}"]
39-
}
25+
publish {
26+
userOrg = POM_DEVELOPER_ID
27+
groupId = GROUP
28+
artifactId = ARTIFACT_ID
29+
publishVersion = VERSION_NAME
30+
desc = POM_DESCRIPTION
31+
website = POM_URL
4032
}
41-
42-
apply from: 'android-artifacts.gradle'
43-
apply from: 'central-publish.gradle'
44-
apply from: 'bintray-publish.gradle'

transformations/central-publish.gradle

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

transformations/gradle.properties

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

0 commit comments

Comments
 (0)