Skip to content

Commit 4e79e15

Browse files
committed
Bump version to 5.8.2
1 parent 6c54f09 commit 4e79e15

File tree

9 files changed

+23
-20
lines changed

9 files changed

+23
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [5.8.2] - 2022-05-24Z
8+
79
### Fixed
810

911
- Xcode 13.4 support. Fixed an issue that when built with Xcode 13.4, there is a chance that linking fails due to reference cycle. [#174](https://github.com/line/line-sdk-ios-swift/pull/174)
@@ -241,3 +243,4 @@ LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5,
241243
[5.7.0]: https://github.com/line/line-sdk-ios-swift/compare/5.6.2...5.7.0
242244
[5.8.0]: https://github.com/line/line-sdk-ios-swift/compare/5.7.0...5.8.0
243245
[5.8.1]: https://github.com/line/line-sdk-ios-swift/compare/5.8.0...5.8.1
246+
[5.8.2]: https://github.com/line/line-sdk-ios-swift/compare/5.8.1...5.8.2

LineSDK/LineSDK.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2868,7 +2868,7 @@
28682868
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
28692869
CODE_SIGN_IDENTITY = "iPhone Developer";
28702870
COPY_PHASE_STRIP = NO;
2871-
CURRENT_PROJECT_VERSION = 1129;
2871+
CURRENT_PROJECT_VERSION = 1140;
28722872
DEBUG_INFORMATION_FORMAT = dwarf;
28732873
ENABLE_STRICT_OBJC_MSGSEND = YES;
28742874
ENABLE_TESTABILITY = YES;
@@ -2934,7 +2934,7 @@
29342934
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
29352935
CODE_SIGN_IDENTITY = "iPhone Developer";
29362936
COPY_PHASE_STRIP = NO;
2937-
CURRENT_PROJECT_VERSION = 1129;
2937+
CURRENT_PROJECT_VERSION = 1140;
29382938
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
29392939
ENABLE_NS_ASSERTIONS = NO;
29402940
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -2967,7 +2967,7 @@
29672967
CODE_SIGN_STYLE = Automatic;
29682968
DEFINES_MODULE = YES;
29692969
DYLIB_COMPATIBILITY_VERSION = 1;
2970-
DYLIB_CURRENT_VERSION = 1129;
2970+
DYLIB_CURRENT_VERSION = 1140;
29712971
DYLIB_INSTALL_NAME_BASE = "@rpath";
29722972
INFOPLIST_FILE = LineSDK/Info.plist;
29732973
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -2994,7 +2994,7 @@
29942994
CODE_SIGN_STYLE = Automatic;
29952995
DEFINES_MODULE = YES;
29962996
DYLIB_COMPATIBILITY_VERSION = 1;
2997-
DYLIB_CURRENT_VERSION = 1129;
2997+
DYLIB_CURRENT_VERSION = 1140;
29982998
DYLIB_INSTALL_NAME_BASE = "@rpath";
29992999
INFOPLIST_FILE = LineSDK/Info.plist;
30003000
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3056,7 +3056,7 @@
30563056
CODE_SIGN_STYLE = Automatic;
30573057
DEFINES_MODULE = YES;
30583058
DYLIB_COMPATIBILITY_VERSION = 1;
3059-
DYLIB_CURRENT_VERSION = 1129;
3059+
DYLIB_CURRENT_VERSION = 1140;
30603060
DYLIB_INSTALL_NAME_BASE = "@rpath";
30613061
INFOPLIST_FILE = LineSDKObjC/Info.plist;
30623062
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3082,7 +3082,7 @@
30823082
CODE_SIGN_STYLE = Automatic;
30833083
DEFINES_MODULE = YES;
30843084
DYLIB_COMPATIBILITY_VERSION = 1;
3085-
DYLIB_CURRENT_VERSION = 1129;
3085+
DYLIB_CURRENT_VERSION = 1140;
30863086
DYLIB_INSTALL_NAME_BASE = "@rpath";
30873087
INFOPLIST_FILE = LineSDKObjC/Info.plist;
30883088
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3141,7 +3141,7 @@
31413141
CODE_SIGN_STYLE = Automatic;
31423142
DEFINES_MODULE = YES;
31433143
DYLIB_COMPATIBILITY_VERSION = 1;
3144-
DYLIB_CURRENT_VERSION = 1129;
3144+
DYLIB_CURRENT_VERSION = 1140;
31453145
DYLIB_INSTALL_NAME_BASE = "@rpath";
31463146
INFOPLIST_FILE = LineSDKObjC/Info.plist;
31473147
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3168,7 +3168,7 @@
31683168
CODE_SIGN_STYLE = Automatic;
31693169
DEFINES_MODULE = YES;
31703170
DYLIB_COMPATIBILITY_VERSION = 1;
3171-
DYLIB_CURRENT_VERSION = 1129;
3171+
DYLIB_CURRENT_VERSION = 1140;
31723172
DYLIB_INSTALL_NAME_BASE = "@rpath";
31733173
INFOPLIST_FILE = LineSDKObjC/Info.plist;
31743174
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

LineSDK/LineSDK/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.8.1</string>
18+
<string>5.8.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>1129</string>
20+
<string>1140</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

LineSDK/LineSDK/Utils/Constant.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public struct Constant {
2727
// This version number is bumped by `bump_constant_version` lane when releasing a new version.
2828
// If you change the name or location of this variable, also update the lane in the Fastfile.
2929
/// The version of the current LINE SDK.
30-
public static let SDKVersion = "5.8.1"
30+
public static let SDKVersion = "5.8.2"
3131

3232
static var SDKVersionString: String {
3333
return "LINE SDK iOS v\(SDKVersion)"

LineSDK/LineSDKObjC/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.8.1</string>
18+
<string>5.8.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>1129</string>
20+
<string>1140</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

LineSDK/LineSDKObjCInterfaceTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.8.1</string>
18+
<string>5.8.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>1129</string>
20+
<string>1140</string>
2121
</dict>
2222
</plist>

LineSDK/LineSDKTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.8.1</string>
18+
<string>5.8.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>1129</string>
20+
<string>1140</string>
2121
</dict>
2222
</plist>

LineSDK/TestHost/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.8.1</string>
18+
<string>5.8.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>1129</string>
20+
<string>1140</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>UIRequiredDeviceCapabilities</key>

LineSDKSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = "LineSDKSwift"
4-
s.version = "5.8.1"
4+
s.version = "5.8.2"
55
s.summary = "The LINE SDK for iOS Swift provides a modern way of implementing LINE APIs."
66

77
s.description = <<-DESC

0 commit comments

Comments
 (0)