diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad21e93..9f21fe66 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.10.1] - 2023-10-02 + ### Fixed - Update license holder name in all source code files. Now LY Corporation is the license holder of LINE SDK Swift. The license content and terms itself is not changed so you can still use the SDK under the same condition as before. [#193](https://github.com/line/line-sdk-ios-swift/pull/193) @@ -277,3 +279,4 @@ LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5, [5.9.0]: https://github.com/line/line-sdk-ios-swift/compare/5.8.2...5.9.0 [5.9.1]: https://github.com/line/line-sdk-ios-swift/compare/5.9.0...5.9.1 [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 diff --git a/LineSDK/LineSDK.xcodeproj/project.pbxproj b/LineSDK/LineSDK.xcodeproj/project.pbxproj index 6c476108..24045c46 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 = 1174; + CURRENT_PROJECT_VERSION = 1187; 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 = 1174; + CURRENT_PROJECT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 = 1174; + DYLIB_CURRENT_VERSION = 1187; 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 521de6fe..3d0d62cf 100644 --- a/LineSDK/LineSDK/Info.plist +++ b/LineSDK/LineSDK/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.10.0 + 5.10.1 CFBundleVersion - 1174 + 1187 NSPrincipalClass diff --git a/LineSDK/LineSDK/Utils/Constant.swift b/LineSDK/LineSDK/Utils/Constant.swift index 9f3b3098..8829ec0d 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.10.0" + public static let SDKVersion = "5.10.1" static var SDKVersionString: String { return "LINE SDK iOS v\(SDKVersion)" diff --git a/LineSDK/LineSDKObjC/Info.plist b/LineSDK/LineSDKObjC/Info.plist index 521de6fe..3d0d62cf 100644 --- a/LineSDK/LineSDKObjC/Info.plist +++ b/LineSDK/LineSDKObjC/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.10.0 + 5.10.1 CFBundleVersion - 1174 + 1187 NSPrincipalClass diff --git a/LineSDK/LineSDKObjCInterfaceTests/Info.plist b/LineSDK/LineSDKObjCInterfaceTests/Info.plist index d3328bc4..24ecca4f 100644 --- a/LineSDK/LineSDKObjCInterfaceTests/Info.plist +++ b/LineSDK/LineSDKObjCInterfaceTests/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.10.0 + 5.10.1 CFBundleVersion - 1174 + 1187 diff --git a/LineSDK/LineSDKTests/Info.plist b/LineSDK/LineSDKTests/Info.plist index 2178ed34..69a89aa7 100644 --- a/LineSDK/LineSDKTests/Info.plist +++ b/LineSDK/LineSDKTests/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.10.0 + 5.10.1 CFBundleVersion - 1174 + 1187 diff --git a/LineSDK/TestHost/Info.plist b/LineSDK/TestHost/Info.plist index 9d9b4943..37a4381a 100644 --- a/LineSDK/TestHost/Info.plist +++ b/LineSDK/TestHost/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.10.0 + 5.10.1 CFBundleVersion - 1174 + 1187 LSRequiresIPhoneOS UIRequiredDeviceCapabilities diff --git a/LineSDKSwift.podspec b/LineSDKSwift.podspec index 84b99494..64318cd0 100644 --- a/LineSDKSwift.podspec +++ b/LineSDKSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "LineSDKSwift" - s.version = "5.10.0" + s.version = "5.10.1" s.summary = "The LINE SDK for iOS Swift provides a modern way of implementing LINE APIs." s.description = <<-DESC