Skip to content

Commit 67f8d7d

Browse files
authored
chore(Release): 1.0.0 (#638)
* chore(Release): 1.0.0 * Linking README. * Shorthand link
1 parent 26ee885 commit 67f8d7d

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ range of applications using the [Google Maps Android API][android-site].
2525
## Requirements
2626

2727
* Android API level 15+
28-
* Maps SDK via Google Play Services (this library is not yet compatible with the [standalone Maps SDK BETA library])
28+
* Maps SDK via Google Play Services (this library is not yet compatible with the [Maps SDK v3.0 BETA] library)
2929

3030
## Installation
3131

3232
```groovy
3333
dependencies {
34-
implementation 'com.google.maps.android:android-maps-utils:0.6.2'
34+
implementation 'com.google.maps.android:android-maps-utils:1.0.0'
3535
}
3636
```
3737

@@ -48,10 +48,10 @@ For more information, check out the detailed guide on the
4848
[Google Developers site][devsite-guide]. You can also view the generated
4949
[reference docs][javadoc] for a full list of classes and their methods.
5050

51-
[standalone Maps SDK BETA library]: https://developers.google.com/maps/documentation/android-sdk/v3-client-migration
51+
[Maps SDK v3.0 BETA]: https://developers.google.com/maps/documentation/android-sdk/v3-client-migration
5252
[file an issue]: https://github.com/googlemaps/android-maps-utils/issues/new/choose
5353
[pull request]: https://github.com/googlemaps/android-maps-utils/compare
54-
[code of conduct]: https://github.com/googlemaps/android-maps-utils/blob/master/CODE_OF_CONDUCT.md
54+
[code of conduct]: CODE_OF_CONDUCT.md
5555
[Discord channel]: https://discord.gg/hYsWbmk
5656
[android-site]: https://developer.android.com/training/maps/index.html
5757
[devsite-guide]: https://developers.google.com/maps/documentation/android-api/utility/

RELEASING.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Releasing
2+
=========
3+
4+
1. Auto-generate the changelog for the latest version using [conventional-changelog-cli]
5+
e.g. `conventional-changelog -p angular`
6+
2. Inspect the autogenerated changelog, make modifications as needed, and update [CHANGELOG.md].
7+
3. Update the [README.md] "Installation" section with the new version of the library
8+
4. Update the version in [gradle-mvn-push.gradle] with the new version of the library
9+
5. Create a pull request with the changes with the title "chore(Release): <version_number>"
10+
6. Once the pull request has been merged, create a git tag and push it (Travis will handle publishing to Maven)
11+
7. Create a GitHub release with the tag
12+
13+
[conventional-changelog-cli]: https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli
14+
[gradle-mvn-push.gradle]: gradle-mvn-push.gradle#L65
15+
[CHANGELOG.md]: CHANGELOG.md
16+
[README.md]: README.md

gradle-mvn-push.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ publishing {
6262
}
6363
groupId group
6464
artifactId 'android-maps-utils'
65-
version '0.6.2'
65+
version '1.0.0'
6666
afterEvaluate {
6767
artifact bundleReleaseAar
6868
}

0 commit comments

Comments
 (0)