diff --git a/AWSAppSync.podspec b/AWSAppSync.podspec
index 0eaa3581..2a510016 100644
--- a/AWSAppSync.podspec
+++ b/AWSAppSync.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAppSync'
- s.version = '3.4.2'
+ s.version = '3.4.3'
s.author = 'AWS'
s.homepage = 'http://aws.amazon.com/mobile/sdk'
s.license = { :type => 'Amazon Software License', :file => 'LICENSE' }
diff --git a/AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift b/AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift
index e005f764..301aea59 100644
--- a/AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift
+++ b/AWSAppSyncClient/AWSAppSyncHTTPNetworkTransport.swift
@@ -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.4.2 AppSyncClient", forHTTPHeaderField: "User-Agent")
+ request.setValue("aws-sdk-ios/3.4.3 AppSyncClient", forHTTPHeaderField: "User-Agent")
addDeviceId(request: &request)
}
diff --git a/AWSAppSyncClient/Info.plist b/AWSAppSyncClient/Info.plist
index 7ca49605..f8f48011 100644
--- a/AWSAppSyncClient/Info.plist
+++ b/AWSAppSyncClient/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 3.4.2
+ 3.4.3
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/README.md b/README.md
index a09c563d..a59df7a0 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,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.4.2'
+ pod 'AWSAppSync', '~> 3.4.3'
```
Example:
@@ -49,7 +49,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.4.2'
+ pod 'AWSAppSync', '~> 3.4.3'
end
```