From 72e14c9685e3f5e0c4c78cd05e330c554e1af931 Mon Sep 17 00:00:00 2001 From: Zach Klippenstein Date: Mon, 1 Mar 2021 15:34:41 -0800 Subject: [PATCH] Releasing v2.3.0. --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8e1ee..b2bd465 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +Version 2.3.0 +------------- + +_2021-3-1_ + +* Upgrade Compose to beta01. (#128) + Version 2.2.0 ------------- diff --git a/README.md b/README.md index fd73490..7e78f7a 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ library is on the classpath. If you are using Compose, you're probably already u (the `@Preview` annotation lives in the Tooling library). On the other hand, if you're not using Compose, Radiography won't bloat your app with transitive dependencies on any Compose artifacts. -Compose changes frequently, and while in alpha, is being released every two weeks. If you are using +Compose changes frequently, and while in beta, is being released every two weeks. If you are using Radiography with an unsupported version of Compose, or you don't depend on the Tooling library, then Radiography will still try to detect compositions, but instead of rendering the actual hierarchy, it will just include a message asking you to upgrade Radiography or add the Tooling library. @@ -119,7 +119,7 @@ The only thing required for Radiography to render composables is to include the a dependency: ```kotlin dependencies { - implementation("androidx.ui:ui-tooling:1.0.0-alphaXY") + implementation("androidx.compose.ui:ui-tooling:1.0.0-betaXY") } ``` diff --git a/gradle.properties b/gradle.properties index a62dba3..7ad2a78 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,7 +20,7 @@ android.useAndroidX=true systemProp.org.gradle.internal.publish.checksums.insecure=true GROUP=com.squareup.radiography -VERSION_NAME=2.3.0-SNAPSHOT +VERSION_NAME=2.3.0 POM_DESCRIPTION=Pretty printing of view hierarchies