Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Commit c37e6f0

Browse files
authored
chore: release 3.7.0 (#594)
1 parent 28da4f2 commit c37e6f0

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

AWSAppSync.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AWSAppSync'
3-
s.version = '3.6.5'
3+
s.version = '3.7.0'
44
s.author = 'AWS'
55
s.homepage = 'http://aws.amazon.com/mobile/sdk'
66
s.license = { :type => 'Amazon Software License', :file => 'LICENSE' }

AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public class AWSAppSyncHTTPNetworkTransport: AWSNetworkTransport {
191191
request.httpMethod = "POST"
192192
request.setValue(NSDate().aws_stringValue(AWSDateISO8601DateFormat2), forHTTPHeaderField: "X-Amz-Date")
193193
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
194-
request.setValue("aws-sdk-ios/3.6.5 AppSyncClient", forHTTPHeaderField: "User-Agent")
194+
request.setValue("aws-sdk-ios/3.7.0 AppSyncClient", forHTTPHeaderField: "User-Agent")
195195
addDeviceId(request: &request)
196196
}
197197

AWSAppSyncClient/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.6.5</string>
18+
<string>3.7.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and perform operations like `Queries`, `Mutations` and `Subscriptions`. The SDK
44
also includes support for offline operations.
55

6+
### 3.7.0
7+
8+
### Features
9+
- update minimum ios deployment target to v12([PR #586](https://github.com/awslabs/aws-mobile-appsync-sdk-ios/pull/586))
10+
- update dependency AppSyncRealTimeClient to 3.2.0
11+
- update dependencies of AWSSDK to 2.36.0
12+
13+
614
## 3.6.5
715

816
### Bug Fixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
4545
1. Add the following line to your Podfile:
4646

4747
```ruby
48-
pod 'AWSAppSync', '~> 3.6.5'
48+
pod 'AWSAppSync', '~> 3.7.0'
4949
```
5050

5151
Example:
@@ -59,7 +59,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
5959
use_frameworks!
6060
6161
# Pods for EventsApp
62-
pod 'AWSAppSync', '~> 3.6.5'
62+
pod 'AWSAppSync', '~> 3.7.0'
6363
end
6464
```
6565

0 commit comments

Comments
 (0)