From f46dfce6acddc0353d0ca89d97ed1eb43a9b384a Mon Sep 17 00:00:00 2001 From: Ruben Sousa Date: Tue, 18 Jun 2024 23:54:45 +0200 Subject: [PATCH 1/2] Bump to 1.3.0-beta02 (cherry picked from commit 235d4d24621353d50fa87859996c3d4db7ef3c32) --- docs/changelog.md | 8 ++++++++ gradle.properties | 2 +- mkdocs.yml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 68dbb68e..906cc213 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,14 @@ ## Version 1.3.0 +### 1.3.0-beta02 + +2024-06-19 + +#### Bug fixes + +- Fixed `OnViewFocusedListener` not working correctly for a parent RecyclerView when a nested RecyclerView doesn't have a listener registered ([#229](https://github.com/rubensousa/DpadRecyclerView/pull/229)) + ### 1.3.0-beta01 2024-06-17 diff --git a/gradle.properties b/gradle.properties index 21387c72..52babd32 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,4 +22,4 @@ kotlin.code.style=official # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true android.enableR8.fullMode=true -LIBRARY_VERSION=1.3.0-beta01 \ No newline at end of file +LIBRARY_VERSION=1.3.0-beta02 \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 2fddc5c3..7f027445 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -24,7 +24,7 @@ theme: extra: dpadrecyclerview: - version: '1.3.0-beta01' + version: '1.3.0-beta02' social: - icon: 'fontawesome/brands/github' link: 'https://github.com/rubensousa/DpadRecyclerView' From 22ad43003b407f843b776a0adf6111b02635cd7f Mon Sep 17 00:00:00 2001 From: Ruben Sousa Date: Thu, 20 Jun 2024 00:18:05 +0200 Subject: [PATCH 2/2] Update changelog for 1.3.0-beta02 --- docs/changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 906cc213..803bab08 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,11 +4,12 @@ ### 1.3.0-beta02 -2024-06-19 +2024-06-20 #### Bug fixes - Fixed `OnViewFocusedListener` not working correctly for a parent RecyclerView when a nested RecyclerView doesn't have a listener registered ([#229](https://github.com/rubensousa/DpadRecyclerView/pull/229)) +- Fixed `DpadRecyclerView` losing focus when adapter is cleared ([#232](https://github.com/rubensousa/DpadRecyclerView/pull/232)) ### 1.3.0-beta01