Browse Source

Release 0.5.2

Aidan Follestad 10 năm trước cách đây
mục cha
commit
895788358f
4 tập tin đã thay đổi với 13 bổ sung5 xóa
  1. 4 0
      CHANGELOG.md
  2. 5 1
      README.md
  3. 2 2
      library/build.gradle
  4. 2 2
      sample/build.gradle

+ 4 - 0
CHANGELOG.md

@@ -1,5 +1,9 @@
 # Changelog
 
+###### Version 0.5.2
+
+> 1. Some quick fixes for the constants used with the various gravity methods (e.g. `titleGravity()`).
+
 ###### Version 0.5.1
 
 > Lots of fixes from [hzsweers](https://github.com/hzsweers)'s pull request! https://github.com/afollestad/material-dialogs/pull/149

+ 5 - 1
README.md

@@ -8,6 +8,10 @@ The code you see below is also found in the sample project. You can download a A
 
 For the full history, see the [Changelog](https://github.com/afollestad/material-dialogs/blob/master/CHANGELOG.md).
 
+###### Version 0.5.2
+
+> 1. Some quick fixes for the constants used with the various gravity methods (e.g. `titleGravity()`).
+
 ###### Version 0.5.1
 
 > Lots of fixes from [hzsweers](https://github.com/hzsweers)'s pull request! https://github.com/afollestad/material-dialogs/pull/149
@@ -32,7 +36,7 @@ Easily reference the library in your Android projects using this dependency in y
 
 ```Groovy
 dependencies {
-    compile 'com.afollestad:material-dialogs:0.5.1'
+    compile 'com.afollestad:material-dialogs:0.5.2'
 }
 ```
 

+ 2 - 2
library/build.gradle

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