Skip to content

Commit cad7028

Browse files
author
Bartosz Lipinski
committed
Merge branch 'release/1.2.1'
2 parents 13d0295 + d7c8dca commit cad7028

File tree

10 files changed

+36
-253
lines changed

10 files changed

+36
-253
lines changed

.gitignore

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
1-
# Built application files
2-
*.apk
3-
*.ap_
1+
.classpath
2+
.project
3+
.settings
4+
eclipsebin
45

5-
# Files for the Dalvik VM
6-
*.dex
6+
bin
7+
gen
8+
build
9+
out
10+
lib
711

8-
# Java class files
9-
*.class
12+
.idea
13+
*.iml
14+
classes
1015

11-
# Generated files
12-
bin/
13-
gen/
16+
obj
1417

15-
# Gradle files
16-
.gradle/
17-
build/
18+
.DS_Store
1819

19-
# Local configuration file (sdk path, etc)
20+
# Gradle
21+
.gradle
22+
jniLibs
23+
build
2024
local.properties
21-
22-
# Proguard folder generated by Eclipse
23-
proguard/
24-
25-
# Log Files
26-
*.log
27-
28-
.idea
25+
reports

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 1.2.1 *(2015-12-10)*
2+
----------------------------
3+
4+
Margin bug fixes.
5+
16
Version 1.2.0 *(2015-10-30)*
27
----------------------------
38

README.md

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

4040
```xml
4141
dependencies {
42-
compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.2.0'
42+
compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.2.1'
4343
}
4444
```
4545

ViewPropertyObjectAnimator.iml

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.3.0'
8+
classpath 'com.android.tools.build:gradle:1.5.0'
99

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

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.2.0
2-
VERSION_CODE=3
1+
VERSION_NAME=1.2.1
2+
VERSION_CODE=4
33
GROUP=com.bartoszlipinski
44

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

library/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.library'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
5+
buildToolsVersion "23.0.2"
66

77
defaultConfig {
88
minSdkVersion 14
99
targetSdkVersion 23
10-
versionCode 3
11-
versionName "1.2.0"
10+
versionCode 4
11+
versionName "1.2.1"
1212
}
1313
buildTypes {
1414
release {
@@ -20,7 +20,7 @@ android {
2020

2121
dependencies {
2222
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
compile 'com.android.support:support-v4:23.0.1'
23+
compile 'com.android.support:support-v4:23.1.1'
2424
}
2525

2626
apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'

library/library.iml

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

sample/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
5+
buildToolsVersion "23.0.2"
66

77
defaultConfig {
88
applicationId "com.bartoszlipinski.viewpropertyobjectanimator.sample"
99
minSdkVersion 14
1010
targetSdkVersion 23
11-
versionCode 3
12-
versionName "1.2.0"
11+
versionCode 4
12+
versionName "1.2.1"
1313
}
1414
buildTypes {
1515
release {
@@ -22,5 +22,5 @@ android {
2222
dependencies {
2323
compile fileTree(dir: 'libs', include: ['*.jar'])
2424
compile project(':library')
25-
compile 'com.android.support:appcompat-v7:23.0.1'
25+
compile 'com.android.support:appcompat-v7:23.1.1'
2626
}

sample/sample.iml

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

0 commit comments

Comments
 (0)