diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fcef6ae..3f950a1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## Compose [1.0.0-alpha02] - 2022-05-15 +- Fixed access to top-members of the AAR (more info here: https://stackoverflow.com/q/72244263/293878) + ## Compose [1.0.0-alpha01] - 2022-05-14 - First release of SpeedDial for Compose diff --git a/RELEASING.md b/RELEASING.md index fb96391b..7c339566 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -3,7 +3,7 @@ 1. Bump the `build_versions.version_name_*` property in `speeddial.config-conventions.gradle` based on Major.Minor.Patch naming scheme 2. Update `CHANGELOG.md` for the impending release. 3. Update the `README.md` with the new version. -4. `git commit -am "Prepare for release X.Y.Z"` (where X.Y.Z is the version you set in step 1) +4. `git commit -am "Prepare for release View|Compose X.Y.Z"` (where X.Y.Z is the version you set in step 1) 5. `git push` 6. `./gradlew clean assembleRelease` 7. `./gradlew :library-view:publishReleasePublicationToSonatypeRepository` diff --git a/build-conventions/src/main/groovy/speeddial.config-conventions.gradle b/build-conventions/src/main/groovy/speeddial.config-conventions.gradle index e1b6d7ed..32fecf41 100644 --- a/build-conventions/src/main/groovy/speeddial.config-conventions.gradle +++ b/build-conventions/src/main/groovy/speeddial.config-conventions.gradle @@ -24,7 +24,7 @@ ext.config = [ 'targetSdk' : 31, 'version_code' : commitCount.isNumber() ? commitCount as int : 0, 'version_name_view' : '3.3.0', - 'version_name_compose' : '1.0.0-alpha01', + 'version_name_compose' : '1.0.0-alpha02', 'version_name_sample' : '4.0.0', ],