From c28e26c84db14d90528371f943ca02cf36b2e3b5 Mon Sep 17 00:00:00 2001 From: Eric Labelle Date: Thu, 4 Jan 2024 15:37:15 -0500 Subject: [PATCH] Update doc for 0.2.1 release with AGP 8.2.1 support --- CHANGELOG.md | 4 ++++ README.md | 15 ++++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13e43a5..38f599c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [0.2.1] - 2024-01-19 + +* Upgrade AGP to 8.2.1 (#108) + ## [0.2.0] - 2023-12-11 * Upgrade AGP to 8.2.0 and Gradle 8.2 (#106) diff --git a/README.md b/README.md index 6d58407..a238544 100644 --- a/README.md +++ b/README.md @@ -108,8 +108,8 @@ be applied to your project as a Gradle plugin. // root build.gradle file buildscript { dependencies { - classpath "app.cash.better.dynamic.features:agp-patch:0.2.0" // Must be loaded before AGP! - classpath "com.android.tools.build:gradle:8.2.0" + classpath "app.cash.better.dynamic.features:agp-patch:0.2.1" // Must be loaded before AGP! + classpath "com.android.tools.build:gradle:8.2.1" } } ``` @@ -122,7 +122,7 @@ the plugin to your application module. ```groovy // app/build.gradle plugins { - id("app.cash.better.dynamic.features.agp-patch") version "0.2.0" + id("app.cash.better.dynamic.features.agp-patch") version "0.2.1" id("com.android.application") version "7.4.2" // Wrong version! } @@ -139,10 +139,11 @@ project will continue to patch this issue without disabling the incremental tran Version Compatibility: -| AGP | Better Dynamic Features | -|--------|-------------------------| -| 8.1.0 | 0.1.0 | -| 8.2.0+ | 0.2.0 | +| AGP | Better Dynamic Features | +|-------|-------------------------| +| 8.1.0 | 0.1.0 | +| 8.2.0 | 0.2.0 | +| 8.2.1 | 0.2.1 | | 8.3.0+ | TBD | # Using Feature Module Code