diff --git a/README.md b/README.md
index b5681bee..3d0c4853 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
![Methods and Size](https://img.shields.io/badge/Methods%20and%20size-Core:%20759,%20124%20KB%20|%20UI:%20267,%2068%20KB-e91e63.svg)
# FlexibleAdapter
-- [v5.0.5](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.5) built on 2018.06.03
+- [v5.0.6](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.6) built on 2018.09.16
- If you come from previous versions, update your code following the Wiki page [Migrations](https://github.com/davideas/FlexibleAdapter/wiki/Migrations).
- Please read also [issues](https://github.com/davideas/FlexibleAdapter/issues) and [releases](https://github.com/davideas/FlexibleAdapter/releases).
@@ -63,7 +63,7 @@ repositories {
```
dependencies {
// Using JCenter
- implementation 'eu.davidea:flexible-adapter:5.0.5'
+ implementation 'eu.davidea:flexible-adapter:5.0.6'
implementation 'eu.davidea:flexible-adapter-ui:1.0.0-b5'
implementation 'eu.davidea:flexible-adapter-livedata:1.0.0-b2'
// From 1.0.0-b3, library is compiled with data binding v2
@@ -73,7 +73,7 @@ dependencies {
#### Stay Updated
|Flexible Adapter|UI|Live Data|Data Binding|
|---|---|---|---|
-|
5.0.5
|1.0.0-b5
|1.0.0-b2
|1.0.0-b3
|
+|5.0.6
|1.0.0-b5
|1.0.0-b2
|1.0.0-b3
|
|||||
# Wiki!
@@ -120,18 +120,15 @@ This [Wiki page](https://github.com/davideas/FlexibleAdapter/wiki/5.x-%7C-Demo-A
# Change Log
###### Latest release
-[v5.0.5](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.5) - 2018.06.03
+[v5.0.6](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.6) - 2018.09.16 |
###### Old releases
+[v5.0.5](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.5) - 2018.06.03 |
[v5.0.4](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.4) - 2018.05.01 |
[v5.0.3](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.3) - 2018.03.23 |
[v5.0.2](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.2) - 2018.03.17 |
[v5.0.1](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.1) - 2018.03.11 |
-[v5.0.0](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0) - 2018.03.04
-[v5.0.0-rc4](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0-rc4) - 2017.12.17 |
-[v5.0.0-rc3](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0-rc3) - 2017.10.20 |
-[v5.0.0-rc2](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0-rc2) - 2017.06.10 |
-[v5.0.0-rc1](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0-rc1) - 2017.01.14
+[v5.0.0](https://github.com/davideas/FlexibleAdapter/releases/tag/5.0.0) - 2018.03.04
# Limitations
Item half swipe cannot be implemented due to how the `android.support.v7.widget.helper.ItemTouchHelper` is done, also clicks on rear view are not possible, same reason.
diff --git a/build.gradle b/build.gradle
index dfc012d6..abde888d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -115,7 +115,7 @@ buildscript {
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.1"
classpath "com.vanniktech:gradle-android-javadoc-plugin:0.3.0-SNAPSHOT"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.0.31"
- classpath "eu.davidea:grabver:0.7.0"
+ classpath "eu.davidea:grabver:1.0.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
diff --git a/flexible-adapter-app/build.gradle b/flexible-adapter-app/build.gradle
index 1cae0038..7640753b 100644
--- a/flexible-adapter-app/build.gradle
+++ b/flexible-adapter-app/build.gradle
@@ -4,6 +4,7 @@ apply plugin: 'eu.davidea.grabver'
versioning {
major 5
minor 0
+ patch 6
}
android {
diff --git a/flexible-adapter-app/src/main/AndroidManifest.xml b/flexible-adapter-app/src/main/AndroidManifest.xml
index facd685d..e1a198d3 100644
--- a/flexible-adapter-app/src/main/AndroidManifest.xml
+++ b/flexible-adapter-app/src/main/AndroidManifest.xml
@@ -21,6 +21,7 @@
+
diff --git a/flexible-adapter-app/version.properties b/flexible-adapter-app/version.properties
index b5a8333a..2a2a0a07 100644
--- a/flexible-adapter-app/version.properties
+++ b/flexible-adapter-app/version.properties
@@ -1,7 +1,7 @@
-#Tue May 08 00:20:53 CEST 2018
+#Sun Sep 16 15:41:28 CEST 2018
MAJOR=5
MINOR=0
-PATCH=0
+PATCH=6
PRE_RELEASE=
-BUILD=5571
-CODE=23
+BUILD=5586
+CODE=29
\ No newline at end of file
diff --git a/flexible-adapter/build.gradle b/flexible-adapter/build.gradle
index 2d40e82f..cfd083a1 100644
--- a/flexible-adapter/build.gradle
+++ b/flexible-adapter/build.gradle
@@ -5,7 +5,7 @@ apply plugin: 'eu.davidea.grabver'
versioning {
major 5
minor 0
- //patch 5
+ patch 6
//preRelease = 'SNAPSHOT'
dependsOn 'install'
}
diff --git a/flexible-adapter/version.properties b/flexible-adapter/version.properties
index c4bdf0a0..fc263dab 100644
--- a/flexible-adapter/version.properties
+++ b/flexible-adapter/version.properties
@@ -1,7 +1,7 @@
-#Sun Jun 03 12:57:27 CEST 2018
+#Sun Sep 16 15:37:43 CEST 2018
MAJOR=5
MINOR=0
-PATCH=5
+PATCH=6
PRE_RELEASE=
BUILD=5400
-CODE=27
+CODE=29