Skip to content

Commit 3f69d36

Browse files
committed
Bump version to 5.9.1
1 parent 7c80737 commit 3f69d36

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.9.1] - 2023-06-08
8+
79
### Fixed
810

911
- Append `IDTokenRaw` property to ObjC's `LineSDKAccessToken` class. This allows retrieve the raw value of the received ID token when using the Objective-C wrapper. [#185](https://github.com/line/line-sdk-ios-swift/issues/185)
@@ -262,3 +264,4 @@ LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5,
262264
[5.8.1]: https://github.com/line/line-sdk-ios-swift/compare/5.8.0...5.8.1
263265
[5.8.2]: https://github.com/line/line-sdk-ios-swift/compare/5.8.1...5.8.2
264266
[5.9.0]: https://github.com/line/line-sdk-ios-swift/compare/5.8.2...5.9.0
267+
[5.9.1]: https://github.com/line/line-sdk-ios-swift/compare/5.9.0...5.9.1

LineSDK/LineSDK.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2870,7 +2870,7 @@
28702870
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
28712871
CODE_SIGN_IDENTITY = "iPhone Developer";
28722872
COPY_PHASE_STRIP = NO;
2873-
CURRENT_PROJECT_VERSION = 1160;
2873+
CURRENT_PROJECT_VERSION = 1168;
28742874
DEBUG_INFORMATION_FORMAT = dwarf;
28752875
ENABLE_STRICT_OBJC_MSGSEND = YES;
28762876
ENABLE_TESTABILITY = YES;
@@ -2936,7 +2936,7 @@
29362936
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
29372937
CODE_SIGN_IDENTITY = "iPhone Developer";
29382938
COPY_PHASE_STRIP = NO;
2939-
CURRENT_PROJECT_VERSION = 1160;
2939+
CURRENT_PROJECT_VERSION = 1168;
29402940
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
29412941
ENABLE_NS_ASSERTIONS = NO;
29422942
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -2969,7 +2969,7 @@
29692969
CODE_SIGN_STYLE = Automatic;
29702970
DEFINES_MODULE = YES;
29712971
DYLIB_COMPATIBILITY_VERSION = 1;
2972-
DYLIB_CURRENT_VERSION = 1160;
2972+
DYLIB_CURRENT_VERSION = 1168;
29732973
DYLIB_INSTALL_NAME_BASE = "@rpath";
29742974
INFOPLIST_FILE = LineSDK/Info.plist;
29752975
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -2996,7 +2996,7 @@
29962996
CODE_SIGN_STYLE = Automatic;
29972997
DEFINES_MODULE = YES;
29982998
DYLIB_COMPATIBILITY_VERSION = 1;
2999-
DYLIB_CURRENT_VERSION = 1160;
2999+
DYLIB_CURRENT_VERSION = 1168;
30003000
DYLIB_INSTALL_NAME_BASE = "@rpath";
30013001
INFOPLIST_FILE = LineSDK/Info.plist;
30023002
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3058,7 +3058,7 @@
30583058
CODE_SIGN_STYLE = Automatic;
30593059
DEFINES_MODULE = YES;
30603060
DYLIB_COMPATIBILITY_VERSION = 1;
3061-
DYLIB_CURRENT_VERSION = 1160;
3061+
DYLIB_CURRENT_VERSION = 1168;
30623062
DYLIB_INSTALL_NAME_BASE = "@rpath";
30633063
INFOPLIST_FILE = LineSDKObjC/Info.plist;
30643064
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3084,7 +3084,7 @@
30843084
CODE_SIGN_STYLE = Automatic;
30853085
DEFINES_MODULE = YES;
30863086
DYLIB_COMPATIBILITY_VERSION = 1;
3087-
DYLIB_CURRENT_VERSION = 1160;
3087+
DYLIB_CURRENT_VERSION = 1168;
30883088
DYLIB_INSTALL_NAME_BASE = "@rpath";
30893089
INFOPLIST_FILE = LineSDKObjC/Info.plist;
30903090
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3143,7 +3143,7 @@
31433143
CODE_SIGN_STYLE = Automatic;
31443144
DEFINES_MODULE = YES;
31453145
DYLIB_COMPATIBILITY_VERSION = 1;
3146-
DYLIB_CURRENT_VERSION = 1160;
3146+
DYLIB_CURRENT_VERSION = 1168;
31473147
DYLIB_INSTALL_NAME_BASE = "@rpath";
31483148
INFOPLIST_FILE = LineSDKObjC/Info.plist;
31493149
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -3170,7 +3170,7 @@
31703170
CODE_SIGN_STYLE = Automatic;
31713171
DEFINES_MODULE = YES;
31723172
DYLIB_COMPATIBILITY_VERSION = 1;
3173-
DYLIB_CURRENT_VERSION = 1160;
3173+
DYLIB_CURRENT_VERSION = 1168;
31743174
DYLIB_INSTALL_NAME_BASE = "@rpath";
31753175
INFOPLIST_FILE = LineSDKObjC/Info.plist;
31763176
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.9.0</string>
18+
<string>5.9.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>1160</string>
20+
<string>1168</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.9.0"
30+
public static let SDKVersion = "5.9.1"
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.9.0</string>
18+
<string>5.9.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>1160</string>
20+
<string>1168</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.9.0</string>
18+
<string>5.9.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>1160</string>
20+
<string>1168</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.9.0</string>
18+
<string>5.9.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>1160</string>
20+
<string>1168</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.9.0</string>
18+
<string>5.9.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>1160</string>
20+
<string>1168</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.9.0"
4+
s.version = "5.9.1"
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)