aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurelien Hubert <aurel.hubert@gmail.com>2016-05-18 14:49:38 +0200
committerAurelien Hubert <aurel.hubert@gmail.com>2016-05-18 14:49:38 +0200
commit060ca086c2b85affdea36ba78700e8ffcba35876 (patch)
tree85e92bff283cb30fa92416b8595678a719af4fdb
parentaf3226da03cb84d6ad49299e07f50fc5ab533ebf (diff)
downloadandroid_external_ahbottomnavigation-060ca086c2b85affdea36ba78700e8ffcba35876.tar.gz
android_external_ahbottomnavigation-060ca086c2b85affdea36ba78700e8ffcba35876.tar.bz2
android_external_ahbottomnavigation-060ca086c2b85affdea36ba78700e8ffcba35876.zip
Updated files for 1.2.2
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md7
-rw-r--r--ahbottomnavigation/build.gradle6
3 files changed, 11 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5ce648e..7e0e04c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
## Changelog
-### Newest version: 1.2.1
+### Newest version: 1.2.2
+
+* Fixed bug when switching between normal and colored mode
+
+### 1.2.1
* Fixed method typo `setNotificationMarginLef` => `setNotificationMarginLeft`
* Avoid multiple call for showing/hiding AHBottomNavigation
diff --git a/README.md b/README.md
index 92ba1f0..5f6a394 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,9 @@ Library to implement the Bottom Navigation component from Material Design guidel
## Demo
<img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo1.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo2.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo3.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo4.gif" width="208" height="368" />
-## What's new (1.2.1) - [Changelog](https://github.com/aurelhubert/ahbottomnavigation/blob/master/CHANGELOG.md)
+## What's new (1.2.2) - [Changelog](https://github.com/aurelhubert/ahbottomnavigation/blob/master/CHANGELOG.md)
-* Fixed method typo `setNotificationMarginLef` => `setNotificationMarginLeft`
-* Avoid multiple call for showing/hiding AHBottomNavigation
+* Fixed bug when switching between normal and colored mode
## Features
* Follow the bottom navigation guidelines (https://www.google.com/design/spec/components/bottom-navigation.html)
@@ -23,7 +22,7 @@ Library to implement the Bottom Navigation component from Material Design guidel
### Gradle
```groovy
dependencies {
- compile 'com.aurelhubert:ahbottomnavigation:1.2.1'
+ compile 'com.aurelhubert:ahbottomnavigation:1.2.2'
}
```
### XML
diff --git a/ahbottomnavigation/build.gradle b/ahbottomnavigation/build.gradle
index 65b33f2..6e20f45 100644
--- a/ahbottomnavigation/build.gradle
+++ b/ahbottomnavigation/build.gradle
@@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/aurelhubert/ahbottomnavigation'
gitUrl = 'https://github.com/aurelhubert/ahbottomnavigation.git'
- libraryVersion = '1.2.1'
+ libraryVersion = '1.2.2'
developerId = 'aurelhubert'
developerName = 'Aurelien Hubert'
@@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
- versionCode 27
- versionName "1.2.1"
+ versionCode 28
+ versionName "1.2.2"
}
buildTypes {
release {