Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.0.0](v0.4.0...v1.0.0) (2021-07-20)

### Bug Fixes

* Enable multidex ([#44](#44)) ([f05fc22](f05fc22))

### Features

* Support bidirectional cancellation for await* calls ([#43](#43)) ([36b7279](36b7279))

### BREAKING CHANGES

* This alters the signature of all await* calls. Rather
than taking in a fully built request, the new signatures require passing
in a function literal receiver for the request builder object so that
a `CancellableTokenSource` can be provided.

Change-Id: I0372780bd0c96aa3df89c15b5d77855109155532
  • Loading branch information
semantic-release-bot committed Jul 20, 2021
1 parent f05fc22 commit a3d2d1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ If you are using the Places SDK through Google Play Services:

```groovy
dependencies {
implementation 'com.google.maps.android:places-ktx:0.4.0'
implementation 'com.google.maps.android:places-ktx:1.0.0'
}
```

Alternatively, if you are using the Places standalone library (for use only with Maps v 3.1.0 beta):

```groovy
dependencies {
implementation 'com.google.maps.android:places-v3-ktx:0.4.0'
implementation 'com.google.maps.android:places-v3-ktx:1.0.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ext.projectArtifactId = { project ->
*/
allprojects {
group = 'com.google.maps.android'
version = '0.4.0'
version = '1.0.0'
project.ext.artifactId = rootProject.ext.projectArtifactId(project)

repositories {
Expand Down

0 comments on commit a3d2d1c

Please sign in to comment.