Skip to content

Commit

Permalink
chore(release): 4.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [4.2.0](v4.1.0...v4.2.0) (2023-06-02)

### Features

* Support Simulator on ARM Macs ([#428](#428)) ([637954e](637954e))
  • Loading branch information
semantic-release-bot committed Jun 2, 2023
1 parent 9183ff5 commit d0a299c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
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 = "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
Expand Down
4 changes: 2 additions & 2 deletions GoogleMapsUtils.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand Down Expand Up @@ -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)";
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
]
)
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<p align="center"><img width=“80%" vspace=“10" src="https://cloud.githubusercontent.com/assets/16808355/16646253/77feeb96-446c-11e6-9ec1-19e12a7fb3ae.png"></p>
<p align="center"><img width=“80%" vspace=“10" src="https://cloud.githubusercontent.com/assets/4.2.0feeb4.2.0c-4.2.0ec4.2.0a7fb3ae.png"></p>

## Requirements

Expand All @@ -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
```

Expand All @@ -56,26 +56,26 @@ 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")
)
]
```

### [Carthage](https://github.com/Carthage/Carthage)

<details>
<summary>Only supported if using Maps SDK v6.2.1 or earlier</summary>
<summary>Only supported if using Maps SDK v4.2.0 or earlier</summary>

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.
</details>

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

Expand Down

0 comments on commit d0a299c

Please sign in to comment.