Skip to content

Commit

Permalink
chore(release): 4.3.4 [skip ci]
Browse files Browse the repository at this point in the history
## [4.3.4](v4.3.3...v4.3.4) (2024-04-16)

### Bug Fixes

* add stability configuration file to the core maps-compose project. The currently configured types are all the immutable data types from com.google.android.gms.maps.model that are currently used in android-maps-compose:maps-compose. These types will now be considered @stable by the compiler. Making immutable data types @stable can be a more effective measure than relying on strong skipping, as stable types can use structural equality, whereas strong skipping merely relies on referential equality, as of today. ([#517](#517)) ([bfe95dd](bfe95dd)), closes [#152](#152)
  • Loading branch information
semantic-release-bot committed Apr 16, 2024
1 parent bfe95dd commit 6426478
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ You no longer need to specify the Maps SDK for Android or its Utility Library as

```groovy
dependencies {
implementation 'com.google.maps.android:maps-compose:4.3.3'
implementation 'com.google.maps.android:maps-compose:4.3.4'
// Optionally, you can include the Compose utils library for Clustering,
// Street View metadata checks, etc.
implementation 'com.google.maps.android:maps-compose-utils:4.3.3'
implementation 'com.google.maps.android:maps-compose-utils:4.3.4'
// Optionally, you can include the widgets library for ScaleBar, etc.
implementation 'com.google.maps.android:maps-compose-widgets:4.3.3'
implementation 'com.google.maps.android:maps-compose-widgets:4.3.4'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ext.projectArtifactId = { project ->

allprojects {
group = 'com.google.maps.android'
version = '4.3.3'
version = '4.3.4'
project.ext.artifactId = rootProject.ext.projectArtifactId(project)
}

Expand Down

0 comments on commit 6426478

Please sign in to comment.