Skip to content

Commit

Permalink
chore(release): 4.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [4.0.0](v3.10.3...v4.0.0) (2021-10-08)

* feat!: Bump minimum to iOS 11 (#387) ([faa691e](faa691e)), closes [#387](#387)

### BREAKING CHANGES

* iOS 10 is no longer supported

Change-Id: Ia2264657e70c9ea165f0a51d092b649312114f38
  • Loading branch information
semantic-release-bot committed Oct 8, 2021
1 parent faa691e commit 0a80396
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.10.3"
s.version = "4.0.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 = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.10.3;
MARKETING_VERSION = 4.0.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 = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.10.3;
MARKETING_VERSION = 4.0.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.10.3/GoogleMapsUtils.xcframework.zip",
checksum: "0b66a1afd471a1af639adcb364eb3f2928d085f77bc03e02ee5f448425d877b7"
url: "https://github.com/googlemaps/google-maps-ios-utils/releases/download/v4.0.0/GoogleMapsUtils.xcframework.zip",
checksum: "6197a96a2d2abf0841e00f62fe72b26b044086999893b1eb3368ab29aa931a14"
)
]
)
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.10.3'
pod 'Google-Maps-iOS-Utils', '~> 4.0.0'
end
```

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

```
github "googlemaps/google-maps-ios-utils" ~> 3.10.3
github "googlemaps/google-maps-ios-utils" ~> 4.0.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.10.3")
.upToNextMinor(from: "4.0.0")
)
]
```
Expand Down

0 comments on commit 0a80396

Please sign in to comment.