Skip to content

Commit

Permalink
chore: release 3.7.0 (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
5d authored Apr 23, 2024
1 parent 28da4f2 commit c37e6f0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AWSAppSync.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAppSync'
s.version = '3.6.5'
s.version = '3.7.0'
s.author = 'AWS'
s.homepage = 'http://aws.amazon.com/mobile/sdk'
s.license = { :type => 'Amazon Software License', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public class AWSAppSyncHTTPNetworkTransport: AWSNetworkTransport {
request.httpMethod = "POST"
request.setValue(NSDate().aws_stringValue(AWSDateISO8601DateFormat2), forHTTPHeaderField: "X-Amz-Date")
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("aws-sdk-ios/3.6.5 AppSyncClient", forHTTPHeaderField: "User-Agent")
request.setValue("aws-sdk-ios/3.7.0 AppSyncClient", forHTTPHeaderField: "User-Agent")
addDeviceId(request: &request)
}

Expand Down
2 changes: 1 addition & 1 deletion AWSAppSyncClient/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.6.5</string>
<string>3.7.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and perform operations like `Queries`, `Mutations` and `Subscriptions`. The SDK
also includes support for offline operations.

### 3.7.0

### Features
- update minimum ios deployment target to v12([PR #586](https://github.com/awslabs/aws-mobile-appsync-sdk-ios/pull/586))
- update dependency AppSyncRealTimeClient to 3.2.0
- update dependencies of AWSSDK to 2.36.0


## 3.6.5

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
1. Add the following line to your Podfile:

```ruby
pod 'AWSAppSync', '~> 3.6.5'
pod 'AWSAppSync', '~> 3.7.0'
```

Example:
Expand All @@ -59,7 +59,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
use_frameworks!
# Pods for EventsApp
pod 'AWSAppSync', '~> 3.6.5'
pod 'AWSAppSync', '~> 3.7.0'
end
```

Expand Down

0 comments on commit c37e6f0

Please sign in to comment.