From 1a527b240f823340848cbae0b01f1b734dbadced Mon Sep 17 00:00:00 2001
From: Mike Penz <mikepenz@gmail.com>
Date: Thu, 27 Sep 2018 10:35:45 +0200
Subject: [PATCH] * [release] v3.3.1

---
 README.md    | 8 ++++----
 build.gradle | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index c73d79f2f..2639c84c0 100644
--- a/README.md
+++ b/README.md
@@ -41,26 +41,26 @@ You can try it out here [Google Play](https://play.google.com/store/apps/details
 
 The library is split up into core, commons, and extensions. The core functions are included in the following dependency.
 ```gradle
-implementation 'com.mikepenz:fastadapter:3.3.0'
+implementation 'com.mikepenz:fastadapter:3.3.1'
 implementation "androidx.appcompat:appcompat:${androidX}"
 implementation "androidx.recyclerview:recyclerview:${androidX}"
 ```
 
 The commons package comes with some useful helpers (which are not needed in all cases) This one for example includes the `FastItemAdapter`
 ```gradle
-implementation 'com.mikepenz:fastadapter-commons:3.3.0'
+implementation 'com.mikepenz:fastadapter-commons:3.3.1'
 ```
 
 Expandable support is included and can be added via this
 ```gradle
-implementation 'com.mikepenz:fastadapter-extensions-expandable:3.3.0'
+implementation 'com.mikepenz:fastadapter-extensions-expandable:3.3.1'
 //The tiny Materialize library used for its useful helper classes
 implementation 'com.mikepenz:materialize:${latestVersion}' // at least 1.2.0
 ```
 
 Many helper classes are included in the following dependency. (This functionality also needs the `Expandable` extension
 ```gradle
-implementation 'com.mikepenz:fastadapter-extensions:3.3.0'
+implementation 'com.mikepenz:fastadapter-extensions:3.3.1'
 implementation "com.google.android.material:material:${androidX}"
 //The tiny Materialize library used for its useful helper classes
 implementation 'com.mikepenz:materialize:${latestVersion}' // at least 1.2.0
diff --git a/build.gradle b/build.gradle
index bb369d524..0ffa883b5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,8 +2,8 @@
 buildscript {
     ext {
         release = [
-                versionName: "3.3.0",
-                versionCode: 3300
+                versionName: "3.3.1",
+                versionCode: 3301
         ]
 
         setup = [