Skip to content

Commit

Permalink
chore(release): 3.10.0 [skip ci]
Browse files Browse the repository at this point in the history
# [3.10.0](v3.9.0...v3.10.0) (2021-07-16)

### Features

* add overlay tappable for geometry renderder ([#376](#376)) ([acff497](acff497))
  • Loading branch information
semantic-release-bot committed Jul 16, 2021
1 parent acff497 commit ad7bffa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Google-Maps-iOS-Utils.podspec
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = "Google-Maps-iOS-Utils"
s.version = "3.9.0"
s.version = "3.10.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
Expand Up @@ -1739,7 +1739,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.9.0;
MARKETING_VERSION = 3.10.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -1789,7 +1789,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.9.0;
MARKETING_VERSION = 3.10.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
Expand Up @@ -24,8 +24,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "GoogleMapsUtils",
url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v3.9.0/GoogleMapsUtils.xcframework.zip",
checksum: "17793a6f76a0ec380efa59cce488b267356c1d90b83518a2357e34f05530f844"
url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v3.10.0/GoogleMapsUtils.xcframework.zip",
checksum: "5d9218c7e3c67836218c2159d13a4d4e7ed1eae98be4a4c609dd89edb5c2c657"
)
]
)
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -36,7 +36,7 @@ In your `Podfile`:
use_frameworks!

target 'TARGET_NAME' do
pod 'Google-Maps-iOS-Utils', '~> 3.9.0'
pod 'Google-Maps-iOS-Utils', '~> 3.10.0'
end
```

Expand All @@ -51,7 +51,7 @@ $ pod install
In your `Cartfile`:

```
github "googlemaps/google-maps-ios-utils" ~> 3.9.0
github "googlemaps/google-maps-ios-utils" ~> 3.10.0
```

See the [Carthage doc] for further installation instructions.
Expand All @@ -66,7 +66,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: "3.9.0")
.upToNextMinor(from: "3.10.0")
)
]
```
Expand Down

0 comments on commit ad7bffa

Please sign in to comment.