Browse Source

Release 0.4.1

Aidan Follestad 10 years ago
parent
commit
5a53d405a1
4 changed files with 9 additions and 5 deletions
  1. 5 1
      README.md
  2. 2 2
      library/build.gradle
  3. 2 2
      sample/build.gradle
  4. BIN
      sample/sample.apk

+ 5 - 1
README.md

@@ -6,6 +6,10 @@ The code you see below is also found in the sample project. You can download a A
 
 ### What's New
 
+###### Version 0.4.1
+
+> 1. Fixes to action button insets, and the stacking algorithm. Thanks [plusCubed](https://github.com/plusCubed)!
+
 ###### Version 0.4.0
 
 > 1. Yet more bug fixes and improvements throughout
@@ -45,7 +49,7 @@ Easily reference the library in your Android projects using this dependency in y
 
 ```Groovy
 dependencies {
-    compile 'com.afollestad:material-dialogs:0.4.0'
+    compile 'com.afollestad:material-dialogs:0.4.1'
 }
 ```
 

+ 2 - 2
library/build.gradle

@@ -9,7 +9,7 @@ android {
         minSdkVersion 8
         targetSdkVersion 21
         versionCode 1
-        versionName "0.4.0"
+        versionName "0.4.1"
     }
     buildTypes {
         release {
@@ -32,7 +32,7 @@ publish {
     userOrg = 'drummer-aidan'
     groupId = 'com.afollestad'
     artifactId = 'material-dialogs'
-    version = '0.4.0'
+    version = '0.4.1'
     description = 'A library for implementing Material design styled dialogs across all versions of Android.'
     website = 'https://github.com/afollestad/material-dialogs'
     issueTracker = "${website}/issues"

+ 2 - 2
sample/build.gradle

@@ -8,8 +8,8 @@ android {
         applicationId "com.afollestad.materialdialogssample"
         minSdkVersion 11
         targetSdkVersion 21
-        versionCode 44
-        versionName "0.4.0"
+        versionCode 45
+        versionName "0.4.1"
     }
     buildTypes {
 //        release {

BIN
sample/sample.apk