Skip to content

Commit

Permalink
Prepare for release Compose 1.0.0-alpha3
Browse files Browse the repository at this point in the history
  • Loading branch information
leinardi committed May 16, 2022
1 parent be901c5 commit a7253f9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## Compose [1.0.0-alpha03] - 2022-05-16
- Added optional label to main FAB

## 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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Dependencies entry (latest version on Maven Central ![Maven Central Compose](htt

```groovy
// Compose only
implementation "com.leinardi.android:speed-dial.compose:1.0.0-alpha02"
implementation "com.leinardi.android:speed-dial.compose:1.0.0-alpha03"
// Classic View only
implementation "com.leinardi.android:speed-dial:3.3.0"
Expand Down
25 changes: 13 additions & 12 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
2. Update `CHANGELOG.md` for the impending release.
3. Update the `README.md` with the new version.
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`
5. `./gradlew spotlessApply check`
6. `./gradlew clean assembleRelease`
7. `./gradlew :library-view:publishReleasePublicationToSonatypeRepository`
8. `./gradlew :library-compose:publishReleasePublicationToSonatypeRepository`
9. Create a new release on Github
1. Tag View version `X.Y.Z` (`git tag -s view-X.Y.Z && git push --tags`)
2. Tag Compose version `X.Y.Z` (`git tag -s compose-X.Y.Z && git push --tags`)
3. Release title (`View X.Y.Z` or `Compose X.Y.Z`)
4. Paste the content from `CHANGELOG.md` as the description
5. Upload the sample-release.apk
10. Create a PR from [master](../../tree/master) to [release](../../tree/release)
11. Visit [Sonatype](https://s01.oss.sonatype.org/#stagingRepositories) and Close and Release the artifact
12. Visit [Google Play Console](https://play.google.com/apps/publish/) and upload and publish the new APK
7. `git push`
8. `./gradlew :library-view:publishReleasePublicationToSonatypeRepository`
9. `./gradlew :library-compose:publishReleasePublicationToSonatypeRepository`
10. Create a new release on Github
1. Tag View version `X.Y.Z` (`git tag -s view-X.Y.Z && git push --tags`)
2. Tag Compose version `X.Y.Z` (`git tag -s compose-X.Y.Z && git push --tags`)
3. Release title (`View X.Y.Z` or `Compose X.Y.Z`)
4. Paste the content from `CHANGELOG.md` as the description
5. Upload the sample-release.apk
11. Create a PR from [master](../../tree/master) to [release](../../tree/release)
12. Visit [Sonatype](https://s01.oss.sonatype.org/#stagingRepositories) and Close and Release the artifact
13. Visit [Google Play Console](https://play.google.com/apps/publish/) and upload and publish the new APK
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ ext.config = [
'targetSdk' : 31,
'version_code' : commitCount.isNumber() ? commitCount as int : 0,
'version_name_view' : '3.3.0',
'version_name_compose' : '1.0.0-alpha02',
'version_name_sample' : '4.0.0',
'version_name_compose' : '1.0.0-alpha03',
'version_name_sample' : '4.1.0',
],

params : [
Expand Down

0 comments on commit a7253f9

Please sign in to comment.