Skip to content

Commit

Permalink
* [release] release v2.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed May 12, 2015
1 parent 6a67163 commit 595478b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You can try it out here [Google Play](https://play.google.com/store/apps/details
The MaterialDrawer Library is pushed to [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22com.mikepenz.materialdrawer%22), so you just need to add the following dependency to your `build.gradle`.

```javascript
compile('com.mikepenz.materialdrawer:library:2.9.5@aar') {
compile('com.mikepenz.materialdrawer:library:2.9.6@aar') {
transitive = true
}
```
Expand All @@ -57,7 +57,7 @@ You can find a detailed description of all methods in the [WIKI](https://github.

###Upgrade Notes
#### < v2.9.5
Tinting is now off by DEFAULT again. Enable it for your items with `withIconTinted(true)` if needed. This release now also tint's the normal state of the icon.
Tinting is now off by DEFAULT again. Enable it for your items with `withIconTintingEnabled(true)` if needed. This release now also tint's the normal state of the icon.

#### < v2.9.0
v2.9.0 now uses the latest com.android.support:appcompat version 22.1.1. Please update if you use an older version. It is now also required to set the theme within your layout for toolbars. (Especially for the DarkToolbar theme)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.mikepenz.materialdrawer.app"
minSdkVersion 11
targetSdkVersion 22
versionCode 295
versionName "2.9.5"
versionCode 296
versionName "2.9.6"
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ org.gradle.daemon=true
org.gradle.parallel=true

# Maven stuff
VERSION_NAME=2.9.5
VERSION_CODE=295
VERSION_NAME=2.9.6
VERSION_CODE=296
GROUP=com.mikepenz.materialdrawer

POM_DESCRIPTION=MaterialDrawer Library
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion 22
versionCode 295
versionName '2.9.5'
versionCode 296
versionName '2.9.6'
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
The <b>MaterialDrawer</b> library aims to provide the easiest possible implementation of a navigation drawer for your application.
]]>
</string>
<string name="library_materialdrawer_libraryVersion">2.9.5</string>
<string name="library_materialdrawer_libraryVersion">2.9.6</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 595478b

Please sign in to comment.