Skip to content

Commit dd0741b

Browse files
author
Bartosz Lipinski
committed
Merge branch 'release/1.4.2'
2 parents a1b3cef + 2fc4039 commit dd0741b

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
Version 1.4.1 *(2015-12-18)*
1+
Version 1.4.2 *(2015-12-18)*
2+
----------------------------
3+
4+
* A temp method (`waitForAnimationStart()`) mistakenly included in the 1.3.0 release has been removed
5+
6+
Version 1.4.1 *(2015-12-18)*
27
----------------------------
38

49
* Added missing exception when there's no Percent Support Library in the project and user is trying to animate percent parameters

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can grab the library via Maven Central. Just add a proper dependency inside
4242

4343
```xml
4444
dependencies {
45-
compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.4.1'
45+
compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.4.2'
4646
}
4747
```
4848

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.4.1
2-
VERSION_CODE=7
1+
VERSION_NAME=1.4.2
2+
VERSION_CODE=8
33
GROUP=com.bartoszlipinski
44

55
POM_DESCRIPTION=Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion 14
99
targetSdkVersion 23
10-
versionCode 7
11-
versionName "1.4.1"
10+
versionCode 8
11+
versionName "1.4.2"
1212
}
1313
buildTypes {
1414
release {

library/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -798,13 +798,6 @@ private boolean hasView() {
798798
return mView.get() != null;
799799
}
800800

801-
public ObjectAnimator waitForAnimationStart(){
802-
if (hasView()){
803-
804-
}
805-
return ObjectAnimator.ofFloat(null, View.ALPHA, 1, 1);
806-
}
807-
808801
@SuppressLint("NewApi")
809802
public ObjectAnimator get() {
810803
if (hasView()) {

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.bartoszlipinski.viewpropertyobjectanimator.sample"
99
minSdkVersion 14
1010
targetSdkVersion 23
11-
versionCode 7
12-
versionName "1.4.1"
11+
versionCode 8
12+
versionName "1.4.2"
1313
}
1414
buildTypes {
1515
release {

0 commit comments

Comments
 (0)