Browse Source

Release 0.6.0

Aidan Follestad 10 years ago
parent
commit
17a6ff1bcb
4 changed files with 19 additions and 4 deletions
  1. 7 0
      CHANGELOG.md
  2. 8 0
      README.md
  3. 2 2
      library/build.gradle
  4. 2 2
      sample/build.gradle

+ 7 - 0
CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+###### Version 0.6.0
+
+> 1. Another pull request from [Kevin Barry](https://github.com/teslacoil) that fixes the "vibrating window" effect.
+> 2. The ability to enable the single choice callback to be called everytime a checkbox is checked, rather than when the positive action is pressed; this matches up with the multi-choice variation. Thanks [hzsweers](https://github.com/hzsweers): https://github.com/afollestad/material-dialogs/pull/170
+> 3. The ability to override the selectors for action buttons and list items, through `Builder` methods and [global theming](https://github.com/afollestad/material-dialogs#global-theming).
+> 4. An exception is now throw
+
 ###### Version 0.5.9
 
 > 1. Pull request from [Kevin Barry](https://github.com/teslacoil) that makes some very important, mostly visual, improvements/fixes: https://github.com/afollestad/material-dialogs/pull/169

+ 8 - 0
README.md

@@ -26,6 +26,14 @@ Check back here frequently for version updates.
 
 For the full history, see the [Changelog](https://github.com/afollestad/material-dialogs/blob/master/CHANGELOG.md).
 
+
+###### Version 0.6.0
+
+> 1. Another pull request from [Kevin Barry](https://github.com/teslacoil) that fixes the "vibrating window" effect.
+> 2. The ability to enable the single choice callback to be called everytime a checkbox is checked, rather than when the positive action is pressed; this matches up with the multi-choice variation. Thanks [hzsweers](https://github.com/hzsweers): https://github.com/afollestad/material-dialogs/pull/170
+> 3. The ability to override the selectors for action buttons and list items, through `Builder` methods and [global theming](https://github.com/afollestad/material-dialogs#global-theming).
+> 4. An exception is now thrown if you attempt to show a dialog on a non-UI thread, which will help those who accidentally do so avoid issues.
+
 ###### Version 0.5.9
 
 > 1. Pull request from [Kevin Barry](https://github.com/teslacoil) that makes some very important, mostly visual, improvements/fixes: https://github.com/afollestad/material-dialogs/pull/169

+ 2 - 2
library/build.gradle

@@ -9,7 +9,7 @@ android {
         minSdkVersion 8
         targetSdkVersion 21
         versionCode 1
-        versionName "0.5.9"
+        versionName "0.6.0"
     }
     lintOptions {
         abortOnError false
@@ -27,7 +27,7 @@ publish {
     userOrg = 'drummer-aidan'
     groupId = 'com.afollestad'
     artifactId = 'material-dialogs'
-    version = '0.5.9'
+    version = '0.6.0'
     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 14
         targetSdkVersion 21
-        versionCode 64
-        versionName "0.5.9"
+        versionCode 65
+        versionName "0.6.0"
     }
     lintOptions {
         abortOnError false