Browse Source

Release 0.4.7

Aidan Follestad 10 năm trước cách đây
mục cha
commit
780d62350f
4 tập tin đã thay đổi với 12 bổ sung5 xóa
  1. 8 1
      README.md
  2. 2 2
      library/build.gradle
  3. 2 2
      sample/build.gradle
  4. BIN
      sample/sample.apk

+ 8 - 1
README.md

@@ -6,6 +6,13 @@ The code you see below is also found in the sample project. You can download a A
 
 ### What's New
 
+###### Version 0.4.7
+
+> 1. Yet more fixes thanks to a pull request from [hzsweers](https://github.com/hzsweers), see the [pull request here](https://github.com/afollestad/material-dialogs/pull/124).
+> 2. Note that the 3 variations of the action callbacks are deprecated and replaced with the single `ButtonCallback` interface.
+> 3. A fix for action button text styling on Lollipop, thanks [plusCubed](https://github.com/plusCubed)!
+> 4. Other fixes and improvements.
+
 ###### Version 0.4.6
 
 > 1. Some fixes thanks to a pull request from [hzsweers](https://github.com/hzsweers), see the [pull request here](https://github.com/afollestad/material-dialogs/pull/124).
@@ -65,7 +72,7 @@ Easily reference the library in your Android projects using this dependency in y
 
 ```Groovy
 dependencies {
-    compile 'com.afollestad:material-dialogs:0.4.6'
+    compile 'com.afollestad:material-dialogs:0.4.7'
 }
 ```
 

+ 2 - 2
library/build.gradle

@@ -9,7 +9,7 @@ android {
         minSdkVersion 8
         targetSdkVersion 21
         versionCode 1
-        versionName "0.4.6"
+        versionName "0.4.7"
     }
     lintOptions {
         abortOnError false
@@ -26,7 +26,7 @@ publish {
     userOrg = 'drummer-aidan'
     groupId = 'com.afollestad'
     artifactId = 'material-dialogs'
-    version = '0.4.6'
+    version = '0.4.7'
     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 51
-        versionName "0.4.6"
+        versionCode 52
+        versionName "0.4.7"
     }
     buildTypes {
 //        release {

BIN
sample/sample.apk