1
0
Aidan Follestad 10 жил өмнө
parent
commit
20d704e6c0

+ 4 - 0
CHANGELOG.md

@@ -1,5 +1,9 @@
 # Changelog
 
+###### 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
+
 ###### Version 0.5.8
 
 > 1. Pull request from [hzsweers](https://github.com/hzsweers): https://github.com/afollestad/material-dialogs/pull/167

+ 22 - 18
README.md

@@ -4,10 +4,32 @@ The code you see below is also found in the sample project. You can download a A
 
 ---
 
+### Gradle Dependency (jCenter)
+
+Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
+
+```Groovy
+dependencies {
+    compile 'com.afollestad:material-dialogs:0.5.9'
+}
+```
+
+[ ![Download](https://api.bintray.com/packages/drummer-aidan/maven/material-dialogs/images/download.svg) ](https://bintray.com/drummer-aidan/maven/material-dialogs/_latestVersion)
+
+***Make sure*** you're using the jCenter repository, Android Studio uses this repository by default.
+
+Check back here frequently for version updates.
+
+---
+
 ### What's New
 
 For the full history, see the [Changelog](https://github.com/afollestad/material-dialogs/blob/master/CHANGELOG.md).
 
+###### 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
+
 ###### Version 0.5.8
 
 > 1. Pull request from [hzsweers](https://github.com/hzsweers): https://github.com/afollestad/material-dialogs/pull/167
@@ -60,24 +82,6 @@ For the full history, see the [Changelog](https://github.com/afollestad/material
 
 ---
 
-### Gradle Dependency (jCenter)
-
-Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
-
-```Groovy
-dependencies {
-    compile 'com.afollestad:material-dialogs:0.5.8'
-}
-```
-
-[ ![Download](https://api.bintray.com/packages/drummer-aidan/maven/material-dialogs/images/download.svg) ](https://bintray.com/drummer-aidan/maven/material-dialogs/_latestVersion)
-
-***Make sure*** you're using the jCenter repository, Android Studio uses this repository by default.
-
-Check back here frequently for version updates.
-
----
-
 ### Basic Dialog
 
 Here's a basic example that mimics the dialog you see on Google's Material design guidelines

+ 2 - 2
library/build.gradle

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

BIN
sample/sample.apk