diff --git a/BluxClient.podspec b/BluxClient.podspec
index 16f4b7a..8c2de48 100644
--- a/BluxClient.podspec
+++ b/BluxClient.podspec
@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = 'BluxClient'
- s.version = '0.3.3'
+ s.version = '0.4.1'
s.summary = 'Blux iOS SDK.'
s.homepage = 'https://github.com/zaikorea/Blux-iOS-SDK.git'
diff --git a/BluxClient/Classes/SdkConfig.swift b/BluxClient/Classes/SdkConfig.swift
index 6f5c2bc..a26abe3 100644
--- a/BluxClient/Classes/SdkConfig.swift
+++ b/BluxClient/Classes/SdkConfig.swift
@@ -14,7 +14,7 @@ public enum SdkType: String {
}
final class SdkConfig {
- static var sdkVersion = "0.3.3"
+ static var sdkVersion = "0.4.1"
static var sdkType: SdkType = .native
static var bluxAppGroupNameKey = "BluxAppGroupName"
diff --git a/Example/Podfile.lock b/Example/Podfile.lock
index 4d1c510..c24abf9 100644
--- a/Example/Podfile.lock
+++ b/Example/Podfile.lock
@@ -1,5 +1,5 @@
PODS:
- - BluxClient (0.3.3)
+ - BluxClient (0.4.1)
DEPENDENCIES:
- BluxClient (from `../`)
diff --git a/Example/Pods/Local Podspecs/BluxClient.podspec.json b/Example/Pods/Local Podspecs/BluxClient.podspec.json
index f74cc2d..72f4e74 100644
--- a/Example/Pods/Local Podspecs/BluxClient.podspec.json
+++ b/Example/Pods/Local Podspecs/BluxClient.podspec.json
@@ -1,6 +1,6 @@
{
"name": "BluxClient",
- "version": "0.3.3",
+ "version": "0.4.1",
"summary": "Blux iOS SDK.",
"homepage": "https://github.com/zaikorea/Blux-iOS-SDK.git",
"license": {
@@ -12,7 +12,7 @@
},
"source": {
"git": "https://github.com/zaikorea/Blux-iOS-SDK.git",
- "tag": "0.3.3"
+ "tag": "0.4.1"
},
"platforms": {
"ios": "14.0"
diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock
index 4d1c510..c24abf9 100644
--- a/Example/Pods/Manifest.lock
+++ b/Example/Pods/Manifest.lock
@@ -1,5 +1,5 @@
PODS:
- - BluxClient (0.3.3)
+ - BluxClient (0.4.1)
DEPENDENCIES:
- BluxClient (from `../`)
diff --git a/Example/Pods/Target Support Files/BluxClient/BluxClient-Info.plist b/Example/Pods/Target Support Files/BluxClient/BluxClient-Info.plist
index f4d74af..43df8b5 100644
--- a/Example/Pods/Target Support Files/BluxClient/BluxClient-Info.plist
+++ b/Example/Pods/Target Support Files/BluxClient/BluxClient-Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.3.3
+ 0.4.1
CFBundleSignature
????
CFBundleVersion
diff --git a/README.md b/README.md
index a3265c8..7ee75e8 100644
--- a/README.md
+++ b/README.md
@@ -18,13 +18,13 @@ use_frameworks!
target 'YOUR_PROJECT_NAME' do
// 아래 줄 추가
- pod 'BluxClient', '0.3.3'
+ pod 'BluxClient', '0.4.1'
end
// 파일 최하단의 아래 줄 추가
// 앞서 입력한 Extension의 Product Name을 target 이름으로 설정합니다.
target 'BluxNotificationServiceExtenstion' do
- pod 'BluxClient', '0.3.3'
+ pod 'BluxClient', '0.4.1'
end
```