Skip to content

Commit

Permalink
* [release] v5.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Nov 18, 2016
1 parent 4ca3896 commit 44d9729
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
4 changes: 4 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
###Upgrade Notes
#### v5.8.0
**IMPORTANT IF YOU USE THE FASTADAPTER OR MATERIALDRAWER**
* You have to update your FastAdapter dependency to v2.1.0 with this release
* See the MIGRATION information of the FastAdapter https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md

#### v5.7.0
**IMPORTANT IF YOU IMPLEMENT CUSTOM-DRAWER-ITEMS OR USE THE FASTADAPTER**
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,9 @@ You can find some frequently asked questions and other resources in the [WIKI /
##1. Provide the gradle dependency

```gradle
compile('com.mikepenz:materialdrawer:5.7.0@aar') {
compile('com.mikepenz:materialdrawer:5.8.0@aar') {
transitive = true
}
//FASTADAPTER 2.1.0-SNAPSHOT support
com.mikepenz:materialdrawer:5.8.0-SNAPSHOT@aar
```

##2. Add your drawer
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
versionCode 570
versionName "5.7.0"
versionCode 580
versionName "5.8.0"

setProperty("archivesBaseName", "-v$versionName-c$versionCode")
}
Expand Down Expand Up @@ -53,10 +53,10 @@ dependencies {

// the sample uses more advanced functions of the fastadapter
// https://github.com/mikepenz/FastAdapter/
compile 'com.mikepenz:fastadapter-commons:2.1.0.b2-SNAPSHOT@aar'
compile 'com.mikepenz:fastadapter-commons:2.1.0@aar'
// used to generate the Open Source section
// https://github.com/mikepenz/AboutLibraries
compile('com.mikepenz:aboutlibraries:5.8.5@aar') {
compile('com.mikepenz:aboutlibraries:5.9.0@aar') {
transitive = true
exclude module: "fastadapter"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
minSdk : 14,
targetSdk : 25]

versions = [supportLib: "25.0.0"]
versions = [supportLib: "25.0.1"]
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Maven stuff
VERSION_NAME=5.8.0-SNAPSHOT
VERSION_NAME=5.8.0
VERSION_CODE=580
GROUP=com.mikepenz
POM_DESCRIPTION=MaterialDrawer Library
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<b>MaterialDrawer</b> the flexible, easy to use, all in one drawer library for your Android project.
]]>
</string>
<string name="library_materialdrawer_libraryVersion">5.7.0</string>
<string name="library_materialdrawer_libraryVersion">5.8.0</string>
<string name="library_materialdrawer_libraryWebsite">https://github.com/mikepenz/MaterialDrawer</string>
<string name="library_materialdrawer_licenseId">apache_2_0</string>
<string name="library_materialdrawer_isOpenSource">true</string>
Expand Down

0 comments on commit 44d9729

Please sign in to comment.