diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2d5a0eb0..07ceea5f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
+## [5.11.1] - 2024-05-22
+
### Fixed
- Now the `xcframework` binaries do not contain bit code anymore. [#210](https://github.com/line/line-sdk-ios-swift/pull/210)
@@ -292,3 +294,4 @@ LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5,
[5.9.1]: https://github.com/line/line-sdk-ios-swift/compare/5.9.1...5.10.0
[5.10.1]: https://github.com/line/line-sdk-ios-swift/compare/5.10.0...5.10.1
[5.11.0]: https://github.com/line/line-sdk-ios-swift/compare/5.10.1...5.11.0
+[5.11.1]: https://github.com/line/line-sdk-ios-swift/compare/5.11.0...5.11.1
diff --git a/LineSDK/LineSDK.xcodeproj/project.pbxproj b/LineSDK/LineSDK.xcodeproj/project.pbxproj
index aa0860e1..3021a381 100644
--- a/LineSDK/LineSDK.xcodeproj/project.pbxproj
+++ b/LineSDK/LineSDK.xcodeproj/project.pbxproj
@@ -2863,7 +2863,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 1197;
+ CURRENT_PROJECT_VERSION = 1203;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
@@ -2929,7 +2929,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 1197;
+ CURRENT_PROJECT_VERSION = 1203;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -2962,7 +2962,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDK/Info.plist;
@@ -2992,7 +2992,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDK/Info.plist;
@@ -3057,7 +3057,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDKObjC/Info.plist;
@@ -3086,7 +3086,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDKObjC/Info.plist;
@@ -3148,7 +3148,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDKObjC/Info.plist;
@@ -3178,7 +3178,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1197;
+ DYLIB_CURRENT_VERSION = 1203;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_MODULE_VERIFIER = YES;
INFOPLIST_FILE = LineSDKObjC/Info.plist;
diff --git a/LineSDK/LineSDK/Info.plist b/LineSDK/LineSDK/Info.plist
index 1d739eea..a3647c2b 100644
--- a/LineSDK/LineSDK/Info.plist
+++ b/LineSDK/LineSDK/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 5.11.0
+ 5.11.1
CFBundleVersion
- 1197
+ 1203
NSPrincipalClass
diff --git a/LineSDK/LineSDK/Utils/Constant.swift b/LineSDK/LineSDK/Utils/Constant.swift
index 6c7be36d..e1b0fd79 100644
--- a/LineSDK/LineSDK/Utils/Constant.swift
+++ b/LineSDK/LineSDK/Utils/Constant.swift
@@ -27,7 +27,7 @@ public struct Constant {
// This version number is bumped by `bump_constant_version` lane when releasing a new version.
// If you change the name or location of this variable, also update the lane in the Fastfile.
/// The version of the current LINE SDK.
- public static let SDKVersion = "5.11.0"
+ public static let SDKVersion = "5.11.1"
static var SDKVersionString: String {
return "LINE SDK iOS v\(SDKVersion)"
diff --git a/LineSDK/LineSDKObjC/Info.plist b/LineSDK/LineSDKObjC/Info.plist
index 1d739eea..a3647c2b 100644
--- a/LineSDK/LineSDKObjC/Info.plist
+++ b/LineSDK/LineSDKObjC/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 5.11.0
+ 5.11.1
CFBundleVersion
- 1197
+ 1203
NSPrincipalClass
diff --git a/LineSDK/LineSDKObjCInterfaceTests/Info.plist b/LineSDK/LineSDKObjCInterfaceTests/Info.plist
index 7dad12fe..0ada41ec 100644
--- a/LineSDK/LineSDKObjCInterfaceTests/Info.plist
+++ b/LineSDK/LineSDKObjCInterfaceTests/Info.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 5.11.0
+ 5.11.1
CFBundleVersion
- 1197
+ 1203
diff --git a/LineSDK/LineSDKTests/Info.plist b/LineSDK/LineSDKTests/Info.plist
index 6de9a2a3..fe476442 100644
--- a/LineSDK/LineSDKTests/Info.plist
+++ b/LineSDK/LineSDKTests/Info.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 5.11.0
+ 5.11.1
CFBundleVersion
- 1197
+ 1203
diff --git a/LineSDK/TestHost/Info.plist b/LineSDK/TestHost/Info.plist
index 107b597c..c994bda4 100644
--- a/LineSDK/TestHost/Info.plist
+++ b/LineSDK/TestHost/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 5.11.0
+ 5.11.1
CFBundleVersion
- 1197
+ 1203
LSRequiresIPhoneOS
UIRequiredDeviceCapabilities
diff --git a/LineSDKSwift.podspec b/LineSDKSwift.podspec
index 3faed78d..951a5112 100644
--- a/LineSDKSwift.podspec
+++ b/LineSDKSwift.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "LineSDKSwift"
- s.version = "5.11.0"
+ s.version = "5.11.1"
s.summary = "The LINE SDK for iOS Swift provides a modern way of implementing LINE APIs."
s.description = <<-DESC