Skip to content

chore(Release): 1.0.0 #638

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ range of applications using the [Google Maps Android API][android-site].
## Requirements

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

## Installation

```groovy
dependencies {
implementation 'com.google.maps.android:android-maps-utils:0.6.2'
implementation 'com.google.maps.android:android-maps-utils:1.0.0'
}
```

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

[standalone Maps SDK BETA library]: https://developers.google.com/maps/documentation/android-sdk/v3-client-migration
[Maps SDK v3.0 BETA]: https://developers.google.com/maps/documentation/android-sdk/v3-client-migration
[file an issue]: https://github.com/googlemaps/android-maps-utils/issues/new/choose
[pull request]: https://github.com/googlemaps/android-maps-utils/compare
[code of conduct]: https://github.com/googlemaps/android-maps-utils/blob/master/CODE_OF_CONDUCT.md
[code of conduct]: CODE_OF_CONDUCT.md
[Discord channel]: https://discord.gg/hYsWbmk
[android-site]: https://developer.android.com/training/maps/index.html
[devsite-guide]: https://developers.google.com/maps/documentation/android-api/utility/
Expand Down
16 changes: 16 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Releasing
=========

1. Auto-generate the changelog for the latest version using [conventional-changelog-cli]
e.g. `conventional-changelog -p angular`
2. Inspect the autogenerated changelog, make modifications as needed, and update [CHANGELOG.md].
3. Update the [README.md] "Installation" section with the new version of the library
4. Update the version in [gradle-mvn-push.gradle] with the new version of the library
5. Create a pull request with the changes with the title "chore(Release): <version_number>"
6. Once the pull request has been merged, create a git tag and push it (Travis will handle publishing to Maven)
7. Create a GitHub release with the tag

[conventional-changelog-cli]: https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli
[gradle-mvn-push.gradle]: gradle-mvn-push.gradle#L65
[CHANGELOG.md]: CHANGELOG.md
[README.md]: README.md
2 changes: 1 addition & 1 deletion gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ publishing {
}
groupId group
artifactId 'android-maps-utils'
version '0.6.2'
version '1.0.0'
afterEvaluate {
artifact bundleReleaseAar
}
Expand Down