diff --git a/Google-Maps-iOS-Utils.podspec b/Google-Maps-iOS-Utils.podspec index be7706c5..b398c5b6 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.1.0" + s.version = "4.2.0" 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 ee22f117..ed0d1809 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.1.0; + MARKETING_VERSION = 4.2.0; 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.1.0; + MARKETING_VERSION = 4.2.0; OTHER_LDFLAGS = "-ObjC"; PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; diff --git a/Package.swift b/Package.swift index a6837bb6..08a8ae21 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.1.0/GoogleMapsUtils.xcframework.zip", - checksum: "2691cbbeee51a250af8eda911c2e5a826473998fa4e61bc5823c181b1ac27846" + url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v4.2.0/GoogleMapsUtils.xcframework.zip", + checksum: "ec4614718329e1f240bc2d3ded0858e430310722f3c36f70600cdbe3e589a95b" ) ] ) diff --git a/README.md b/README.md index 0808772a..3fd1dce6 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 @@ -36,7 +36,7 @@ In your `Podfile`: use_frameworks! target 'TARGET_NAME' do - pod 'Google-Maps-iOS-Utils', '4.1.0' + pod 'Google-Maps-iOS-Utils', '4.2.0' end ``` @@ -56,7 +56,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.1.0") + .upToNextMinor(from: "4.2.0") ) ] ``` @@ -64,18 +64,18 @@ dependencies: [ ### [Carthage](https://github.com/Carthage/Carthage)
-Only supported if using Maps SDK v6.2.1 or earlier +Only supported if using Maps SDK v4.2.0 or earlier In your `Cartfile`: ``` -github "googlemaps/google-maps-ios-utils" ~> 4.1.0 +github "googlemaps/google-maps-ios-utils" ~> 4.2.0 ``` See the [Carthage doc] for further installation instructions.
-In addition to this, you will also have to include the `GoogleMaps` dependency using one of the available installation options (CocoaPods, XCFramework, Carthage (for v6.2.1 and earlier) or manual). +In addition to this, you will also have to include the `GoogleMaps` dependency using one of the available installation options (CocoaPods, XCFramework, Carthage (for v4.2.0 and earlier) or manual). ## Sample App