Skip to content

Commit

Permalink
Merge branch 'release/v0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Apr 7, 2016
2 parents d4d4b59 + 63afe4e commit a8c8f2f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ These `Animators` correctly work with all view states and `RecyclerView` states
#Include in your project
##Using Maven
```javascript
compile('com.mikepenz:itemanimators:0.2.3@aar') {
compile('com.mikepenz:itemanimators:0.2.4@aar') {
transitive = true
}
```
Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion 11
targetSdkVersion 23
versionCode 23
versionName '0.2.3'
versionCode 24
versionName '0.2.4'

applicationVariants.all { variant ->
variant.outputs.each { output ->
Expand Down Expand Up @@ -53,7 +53,7 @@ dependencies {

//used to generate the drawer on the left
//https://github.com/mikepenz/MaterialDrawer
compile('com.mikepenz:materialdrawer:5.1.2@aar') {
compile('com.mikepenz:materialdrawer:5.1.8@aar') {
transitive = true
exclude module: "itemanimators"
exclude module: "fastadapter"
Expand All @@ -62,11 +62,11 @@ dependencies {
// used to fill the RecyclerView with the DrawerItems
// and provides single and multi selection, collapsable items
// https://github.com/mikepenz/FastAdapter
compile 'com.mikepenz:fastadapter:1.2.3@aar'
compile 'com.mikepenz:fastadapter:1.4.0@aar'

//used to generate the Open Source section
//https://github.com/mikepenz/AboutLibraries
compile('com.mikepenz:aboutlibraries:5.5.7@aar') {
compile('com.mikepenz:aboutlibraries:5.6.3@aar') {
transitive = true
}
//used to display the icons in the drawer
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.novoda:bintray-release:0.3.4'
}
}
Expand All @@ -17,10 +17,10 @@ allprojects {

ext {
compileSdkVersion = 23
buildToolsVersion = "23.0.2"
supportLibVersion = "23.2.1"
buildToolsVersion = "23.0.3"
supportLibVersion = "23.3.0"
}

task wrapper(type: Wrapper) {
gradleVersion = '2.11'
gradleVersion = '2.12'
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maven stuff
VERSION_NAME=0.2.3
VERSION_CODE=23
VERSION_NAME=0.2.4
VERSION_CODE=24
GROUP=com.mikepenz

POM_DESCRIPTION=ItemAnimators Library
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Feb 26 00:03:59 CET 2016
#Thu Apr 07 20:03:26 CEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion 23
versionCode 23
versionName '0.2.3'
versionCode 24
versionName '0.2.4'
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
The <b>ItemAnimators</b> library comes with a huge collections of pre-created Animators for your RecyclerView.
]]>
</string>
<string name="library_itemanimators_libraryVersion">0.2.3</string>
<string name="library_itemanimators_libraryVersion">0.2.4</string>
<string name="library_itemanimators_libraryWebsite">https://github.com/mikepenz/itemanimators</string>
<string name="library_itemanimators_licenseId">apache_2_0</string>
<string name="library_itemanimators_isOpenSource">true</string>
Expand Down

0 comments on commit a8c8f2f

Please sign in to comment.