Skip to content

Commit a7253f9

Browse files
committed
Prepare for release Compose 1.0.0-alpha3
1 parent be901c5 commit a7253f9

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## Compose [1.0.0-alpha03] - 2022-05-16
4+
- Added optional label to main FAB
5+
36
## Compose [1.0.0-alpha02] - 2022-05-15
47
- Fixed access to top-members of the AAR (more info here: https://stackoverflow.com/q/72244263/293878)
58

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Dependencies entry (latest version on Maven Central ![Maven Central Compose](htt
3838

3939
```groovy
4040
// Compose only
41-
implementation "com.leinardi.android:speed-dial.compose:1.0.0-alpha02"
41+
implementation "com.leinardi.android:speed-dial.compose:1.0.0-alpha03"
4242
4343
// Classic View only
4444
implementation "com.leinardi.android:speed-dial:3.3.0"

RELEASING.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@
44
2. Update `CHANGELOG.md` for the impending release.
55
3. Update the `README.md` with the new version.
66
4. `git commit -am "Prepare for release View|Compose X.Y.Z"` (where X.Y.Z is the version you set in step 1)
7-
5. `git push`
7+
5. `./gradlew spotlessApply check`
88
6. `./gradlew clean assembleRelease`
9-
7. `./gradlew :library-view:publishReleasePublicationToSonatypeRepository`
10-
8. `./gradlew :library-compose:publishReleasePublicationToSonatypeRepository`
11-
9. Create a new release on Github
12-
1. Tag View version `X.Y.Z` (`git tag -s view-X.Y.Z && git push --tags`)
13-
2. Tag Compose version `X.Y.Z` (`git tag -s compose-X.Y.Z && git push --tags`)
14-
3. Release title (`View X.Y.Z` or `Compose X.Y.Z`)
15-
4. Paste the content from `CHANGELOG.md` as the description
16-
5. Upload the sample-release.apk
17-
10. Create a PR from [master](../../tree/master) to [release](../../tree/release)
18-
11. Visit [Sonatype](https://s01.oss.sonatype.org/#stagingRepositories) and Close and Release the artifact
19-
12. Visit [Google Play Console](https://play.google.com/apps/publish/) and upload and publish the new APK
9+
7. `git push`
10+
8. `./gradlew :library-view:publishReleasePublicationToSonatypeRepository`
11+
9. `./gradlew :library-compose:publishReleasePublicationToSonatypeRepository`
12+
10. Create a new release on Github
13+
1. Tag View version `X.Y.Z` (`git tag -s view-X.Y.Z && git push --tags`)
14+
2. Tag Compose version `X.Y.Z` (`git tag -s compose-X.Y.Z && git push --tags`)
15+
3. Release title (`View X.Y.Z` or `Compose X.Y.Z`)
16+
4. Paste the content from `CHANGELOG.md` as the description
17+
5. Upload the sample-release.apk
18+
11. Create a PR from [master](../../tree/master) to [release](../../tree/release)
19+
12. Visit [Sonatype](https://s01.oss.sonatype.org/#stagingRepositories) and Close and Release the artifact
20+
13. Visit [Google Play Console](https://play.google.com/apps/publish/) and upload and publish the new APK

build-conventions/src/main/groovy/speeddial.config-conventions.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ ext.config = [
2424
'targetSdk' : 31,
2525
'version_code' : commitCount.isNumber() ? commitCount as int : 0,
2626
'version_name_view' : '3.3.0',
27-
'version_name_compose' : '1.0.0-alpha02',
28-
'version_name_sample' : '4.0.0',
27+
'version_name_compose' : '1.0.0-alpha03',
28+
'version_name_sample' : '4.1.0',
2929
],
3030

3131
params : [

0 commit comments

Comments
 (0)