From b56b39cec0e3d5938ddadbfeb4d3fec541ebbb5e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 14 Jun 2023 18:24:42 +0000 Subject: [PATCH] chore(release): 4.2.2 [skip ci] ## [4.2.2](https://github.com/googlemaps/google-maps-ios-utils/compare/v4.2.1...v4.2.2) (2023-06-14) ### Bug Fixes * release config ([#449](https://github.com/googlemaps/google-maps-ios-utils/issues/449)) ([94d66f2](https://github.com/googlemaps/google-maps-ios-utils/commit/94d66f25635f06d30cfd08113779c47e7ef592e8)) --- Google-Maps-iOS-Utils.podspec | 2 +- GoogleMapsUtils.xcodeproj/project.pbxproj | 4 ++-- Package.swift | 4 ++-- Podfile.template | 2 +- README.md | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Google-Maps-iOS-Utils.podspec b/Google-Maps-iOS-Utils.podspec index 77ff54e9..f6e53631 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 = "4.2.1" + s.version = "4.2.2" 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/GoogleMapsUtils.xcodeproj/project.pbxproj b/GoogleMapsUtils.xcodeproj/project.pbxproj index a929fec9..1ce2e9ec 100644 --- a/GoogleMapsUtils.xcodeproj/project.pbxproj +++ b/GoogleMapsUtils.xcodeproj/project.pbxproj @@ -1759,7 +1759,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 4.2.1; + MARKETING_VERSION = 4.2.2; OTHER_LDFLAGS = "-ObjC"; PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; @@ -1813,7 +1813,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 4.2.1; + MARKETING_VERSION = 4.2.2; OTHER_LDFLAGS = "-ObjC"; PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; diff --git a/Package.swift b/Package.swift index 7a2551f1..0a7dcd7e 100644 --- a/Package.swift +++ b/Package.swift @@ -24,8 +24,8 @@ let package = Package( targets: [ .binaryTarget( name: "GoogleMapsUtils", - url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v4.2.1/GoogleMapsUtils.xcframework.zip", - checksum: "aad21691ff9c163eebec5732c6c830446f08e22378f08265a1090e276c575eb4" + url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v4.2.2/GoogleMapsUtils.xcframework.zip", + checksum: "e4c5c3a669ad65130d52c22bd993724707d054ba065d6f60b396715e465504a2" ) ] ) diff --git a/Podfile.template b/Podfile.template index 89687e28..474e319e 100644 --- a/Podfile.template +++ b/Podfile.template @@ -5,6 +5,6 @@ platform :ios, '13.0' target 'YOUR_APPLICATION_TARGET_NAME_HERE' do use_frameworks! pod 'GoogleMaps', '7.4.0' - pod 'Google-Maps-iOS-Utils', '4.1.0' + pod 'Google-Maps-iOS-Utils', '4.2.2' end # [END maps_ios_utils_podfile_template] diff --git a/README.md b/README.md index c23ee84f..9b638a14 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ range of applications using the [Google Maps SDK for iOS][sdk]. - **Quadtree data structure** - indexes 2D geometry points and performs 2D range queries -

+

## Requirements @@ -40,7 +40,7 @@ In your `Podfile`: use_frameworks! target 'TARGET_NAME' do - pod 'Google-Maps-iOS-Utils', '4.2.1' + pod 'Google-Maps-iOS-Utils', '4.2.2' end ``` @@ -60,7 +60,7 @@ Add the following to your `dependencies` value of your `Package.swift` file. dependencies: [ .package( url: "https://github.com/googlemaps/google-maps-ios-utils.git", - .upToNextMinor(from: "4.2.1") + .upToNextMinor(from: "4.2.2") ) ] ```