From 3234152e287e3593412e0c9ae72fc7b6cad2aec6 Mon Sep 17 00:00:00 2001 From: googlemaps-bot Date: Wed, 31 Jul 2024 16:20:23 -0700 Subject: [PATCH] chore(main): release 6.0.0 (#480) * chore(main): release 6.0.0 --------- Co-authored-by: Angela Yu <5506675+wangela@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ Google-Maps-iOS-Utils.podspec | 2 +- Podfile.template | 2 +- README.md | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 32dbe0e2..a3a12f49 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.0" + ".": "6.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ad219e45..608f5c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [6.0.0](https://github.com/googlemaps/google-maps-ios-utils/compare/v5.0.0...v6.0.0) (2024-07-31) + + +### ⚠ BREAKING CHANGES + +* Raise the minimum supported iOS version to 15.0 and raise dependency on Maps SDK for iOS to v9. + +### Features + +* Raise the minimum supported iOS version to 15.0 and raise dependency on Maps SDK for iOS to v9. ([52c3d4d](https://github.com/googlemaps/google-maps-ios-utils/commit/52c3d4d6b5b7d182d64b6442d0ceb2b76afe372d)) + ## [5.0.0](https://github.com/googlemaps/google-maps-ios-utils/compare/v4.2.2...v5.0.0) (2024-07-30) diff --git a/Google-Maps-iOS-Utils.podspec b/Google-Maps-iOS-Utils.podspec index 316d1153..1a90325c 100644 --- a/Google-Maps-iOS-Utils.podspec +++ b/Google-Maps-iOS-Utils.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = "Google-Maps-iOS-Utils" - s.version = "5.0.0" # x-release-please-version + s.version = "6.0.0" # x-release-please-version s.summary = "A utilities library for use with Google Maps SDK for iOS." s.description = " This library contains classes that are useful for a wide range of applications diff --git a/Podfile.template b/Podfile.template index 511856da..09d1cd25 100644 --- a/Podfile.template +++ b/Podfile.template @@ -5,6 +5,6 @@ platform :ios, '15.0' target 'YOUR_APPLICATION_TARGET_NAME_HERE' do use_frameworks! pod 'GoogleMaps', '9.0.0' - pod 'Google-Maps-iOS-Utils', '5.0.0' # x-release-please-version + pod 'Google-Maps-iOS-Utils', '6.0.0' # x-release-please-version end # [END maps_ios_utils_podfile_template] diff --git a/README.md b/README.md index 24762eec..1cadacbc 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ range of applications using the [Google Maps SDK for iOS][sdk]. target 'TARGET_NAME' do pod 'GoogleMaps', '9.0.0' - pod 'Google-Maps-iOS-Utils', '5.0.0' # x-release-please-start-version + pod 'Google-Maps-iOS-Utils', '6.0.0' end ```