Skip to content
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

chore(main): release 6.0.0 #480

Merged
merged 3 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 @@
{
".": "5.0.0"
".": "6.0.0"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Google-Maps-iOS-Utils.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Podfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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' # x-release-please-start-version
end
```

Expand Down