Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.0.1"
".": "6.1.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [6.1.0](https://github.com/googlemaps/android-maps-ktx/compare/v6.0.1...v6.1.0) (2026-07-01)


### Features

* **flow:** add Kotlin Flow extensions for LocationManager and shape managers ([#391](https://github.com/googlemaps/android-maps-ktx/issues/391)) ([f943e6c](https://github.com/googlemaps/android-maps-ktx/commit/f943e6ca2704b64ec615614506d30a664e2cf276))


### Bug Fixes

* **deps:** update dependencies and migrate to AGP 9 ([#402](https://github.com/googlemaps/android-maps-ktx/issues/402)) ([0efe967](https://github.com/googlemaps/android-maps-ktx/commit/0efe967c572cab02b188e74d7bed73c4dfa491ff))

## [6.0.1](https://github.com/googlemaps/android-maps-ktx/compare/v6.0.0...v6.0.1) (2026-03-11)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ It enables you to write more concise, idiomatic Kotlin. Each set of extensions c
dependencies {

// KTX for the Maps SDK for Android library
implementation 'com.google.maps.android:maps-ktx:6.0.1' // {x-release-please-version}
implementation 'com.google.maps.android:maps-ktx:6.1.0' // {x-release-please-version}

// KTX for the Maps SDK for Android Utility Library
implementation 'com.google.maps.android:maps-utils-ktx:6.0.1' // {x-release-please-version}
implementation 'com.google.maps.android:maps-utils-ktx:6.1.0' // {x-release-please-version}
}
```
## Internal usage attribution ID
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ val projectArtifactId: (Project) -> String? = { project ->
allprojects {
group = "com.google.maps.android"
// {x-release-please-start-version}
version = "6.0.1"
version = "6.1.0"
// {x-release-please-end}
val projectArtifactId by extra { project.name }
}
Loading