From 7c0de94383bc8909c1d016816b6c2bcc407950a7 Mon Sep 17 00:00:00 2001 From: onevcat Date: Thu, 26 Sep 2024 14:42:41 +0900 Subject: [PATCH] Bump version to 5.11.2 --- CHANGELOG.md | 3 +++ LineSDK/LineSDK.xcodeproj/project.pbxproj | 16 ++++++++-------- LineSDK/LineSDK/Info.plist | 4 ++-- LineSDK/LineSDK/Utils/Constant.swift | 2 +- LineSDK/LineSDKObjC/Info.plist | 4 ++-- LineSDK/LineSDKObjCInterfaceTests/Info.plist | 4 ++-- LineSDK/LineSDKTests/Info.plist | 4 ++-- LineSDK/TestHost/Info.plist | 4 ++-- LineSDKSwift.podspec | 2 +- 9 files changed, 23 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b45366ed..05870d66 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.2] - 2024-09-26 + ### Fixed - Some compiler warning when building with Xcode 16.0. [#214](https://github.com/line/line-sdk-ios-swift/pull/214) @@ -299,3 +301,4 @@ LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5, [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 +[5.11.2]: https://github.com/line/line-sdk-ios-swift/compare/5.11.1...5.11.2 diff --git a/LineSDK/LineSDK.xcodeproj/project.pbxproj b/LineSDK/LineSDK.xcodeproj/project.pbxproj index 3021a381..c426942f 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 = 1203; + CURRENT_PROJECT_VERSION = 1208; 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 = 1203; + CURRENT_PROJECT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 = 1203; + DYLIB_CURRENT_VERSION = 1208; 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 a3647c2b..b98597ca 100644 --- a/LineSDK/LineSDK/Info.plist +++ b/LineSDK/LineSDK/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.11.1 + 5.11.2 CFBundleVersion - 1203 + 1208 NSPrincipalClass diff --git a/LineSDK/LineSDK/Utils/Constant.swift b/LineSDK/LineSDK/Utils/Constant.swift index e1b0fd79..0a34f85d 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.1" + public static let SDKVersion = "5.11.2" static var SDKVersionString: String { return "LINE SDK iOS v\(SDKVersion)" diff --git a/LineSDK/LineSDKObjC/Info.plist b/LineSDK/LineSDKObjC/Info.plist index a3647c2b..b98597ca 100644 --- a/LineSDK/LineSDKObjC/Info.plist +++ b/LineSDK/LineSDKObjC/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.11.1 + 5.11.2 CFBundleVersion - 1203 + 1208 NSPrincipalClass diff --git a/LineSDK/LineSDKObjCInterfaceTests/Info.plist b/LineSDK/LineSDKObjCInterfaceTests/Info.plist index 0ada41ec..9ff466d8 100644 --- a/LineSDK/LineSDKObjCInterfaceTests/Info.plist +++ b/LineSDK/LineSDKObjCInterfaceTests/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.11.1 + 5.11.2 CFBundleVersion - 1203 + 1208 diff --git a/LineSDK/LineSDKTests/Info.plist b/LineSDK/LineSDKTests/Info.plist index fe476442..e957abf4 100644 --- a/LineSDK/LineSDKTests/Info.plist +++ b/LineSDK/LineSDKTests/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.11.1 + 5.11.2 CFBundleVersion - 1203 + 1208 diff --git a/LineSDK/TestHost/Info.plist b/LineSDK/TestHost/Info.plist index c994bda4..169e6c71 100644 --- a/LineSDK/TestHost/Info.plist +++ b/LineSDK/TestHost/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.11.1 + 5.11.2 CFBundleVersion - 1203 + 1208 LSRequiresIPhoneOS UIRequiredDeviceCapabilities diff --git a/LineSDKSwift.podspec b/LineSDKSwift.podspec index 951a5112..f5b2e372 100644 --- a/LineSDKSwift.podspec +++ b/LineSDKSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "LineSDKSwift" - s.version = "5.11.1" + s.version = "5.11.2" s.summary = "The LINE SDK for iOS Swift provides a modern way of implementing LINE APIs." s.description = <<-DESC