From 888791b1c9943ade0823d295b3b7839ce5c0fe85 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Wed, 12 Aug 2020 13:52:43 -0400 Subject: [PATCH] Prepare version 10.2.3 --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5b5c015..b6848e8d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +Version 10.2.3 *(2020-08-12)* +----------------------------- + +Heads up: Development on this tool is winding down as [view binding](https://developer.android.com/topic/libraries/view-binding) is stable in AS/AGP 3.6+. + + * Fix: Support receiving `MotionEvent` in an `@OnTouch` callback when using 'butterkninfe-reflect'. + + Version 10.2.2 *(2020-08-03)* ----------------------------- diff --git a/README.md b/README.md index ebdb8be8e..af55c5564 100644 --- a/README.md +++ b/README.md @@ -57,8 +57,8 @@ android { } dependencies { - implementation 'com.jakewharton:butterknife:10.2.2' - annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.2' + implementation 'com.jakewharton:butterknife:10.2.3' + annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3' } ``` @@ -80,7 +80,7 @@ buildscript { google() } dependencies { - classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.2' + classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3' } } ``` diff --git a/gradle.properties b/gradle.properties index 76ae9432c..f43532cdf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton -VERSION_NAME=10.2.3-SNAPSHOT +VERSION_NAME=10.2.3 POM_DESCRIPTION=Field and method binding for Android views.