From 1bb0f91d46c54ce24f468c4f71a03b965df687af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Vicente=20G=C3=B3mez=20S=C3=A1nchez?= Date: Sun, 17 Nov 2019 20:09:13 +0100 Subject: [PATCH] Prepare release 3.5.0 --- README.md | 2 +- gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5b5848e..b243b59 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Renderers [![Build Status](https://travis-ci.org/pedrovgs/Renderers.svg?branch=master)](https://travis-ci.org/pedrovgs/Renderers) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.pedrovgs/renderers/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.pedrovgs/renderers) ========= -**Renderers is an Android library created to avoid all the RecyclerView/Adapter boilerplate** needed to create a list/grid of data in your app and all the spaghetti code that developers used to create following the ``ViewHolder`` classic implementation. **As performance is also important for us, we've added a new ``diffUpdate`` method supporting differential updated transparently.** +**Renderers is an Android library created to avoid all the RecyclerView/Adapter boilerplate** needed to create a list/grid of data in your app and all the spaghetti code that developers used to create following the ``ViewHolder`` classic implementation. **As performance is also important for us, we've added a new ``diffUpdate`` and a ``RVListRendererAdapter`` method supporting differential updated transparently in the main thread and a background thred respectively.** With this library you can improve your RecyclerView/Adapter/ViewHolder code. The one sometimes we copy and paste again and again :smiley:. Using this library you won't need to create any new class extending from ``RecyclerViewAdapter``. diff --git a/gradle.properties b/gradle.properties index 0d0b48d..36c8ae3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,8 +2,8 @@ POM_NAME=Renderers POM_ARTIFACT_ID=renderers POM_PACKAGING=aar -VERSION_NAME=3.4.1-SNAPSHOT -VERSION_CODE=030401 +VERSION_NAME=3.5.0 +VERSION_CODE=030500 GROUP=com.github.pedrovgs POM_DESCRIPTION=Android library to avoid duplicated adapters code