diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c649f12..e1ef0de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## CHANGELOG +### 5.6.0 (2023-10-17) +**SDK** +- **Fix:** Updated JS Bridge after fixing linting issues. + ### 5.5.0 (2023-10-16) **SDK** - **Fix:** Fix character escaping issue in Universal bridge (`sendJsonToMiniApp`) diff --git a/MiniApp.podspec b/MiniApp.podspec index 590dd60a..65be7238 100644 --- a/MiniApp.podspec +++ b/MiniApp.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |miniapp| miniapp.name = 'MiniApp' - miniapp.version = '5.5.0' + miniapp.version = '5.6.0' miniapp.authors = "Rakuten Ecosystem Mobile" miniapp.summary = "Rakuten's Mini App SDK" miniapp.description = "This open-source library allows you to integrate Mini App ecosystem into your iOS applications. Mini App SDK also facilitates communication between a mini app and the host app via a message bridge." diff --git a/Sources/Classes/core/MiniApp.swift b/Sources/Classes/core/MiniApp.swift index 71afb0aa..74fe6892 100644 --- a/Sources/Classes/core/MiniApp.swift +++ b/Sources/Classes/core/MiniApp.swift @@ -3,7 +3,7 @@ import UIKit /// Mini App Public API methods public class MiniApp: NSObject { - public static let version = "5.5.0" + public static let version = "5.6.0" private static let shared = MiniApp() private let realMiniApp = RealMiniApp() public static var MAOrientationLock: UIInterfaceOrientationMask = [] diff --git a/Sources/Classes/js-miniapp b/Sources/Classes/js-miniapp index 079f8cbd..39da455a 160000 --- a/Sources/Classes/js-miniapp +++ b/Sources/Classes/js-miniapp @@ -1 +1 @@ -Subproject commit 079f8cbdcc9fd4d597c5fa582d4264ff27c39e4d +Subproject commit 39da455a716d7953f85e34793ce97bc42f7bc162 diff --git a/Tests/Unit/MiniAppScriptMessageHandlerTests.swift b/Tests/Unit/MiniAppScriptMessageHandlerTests.swift index 1b8e3135..75281131 100644 --- a/Tests/Unit/MiniAppScriptMessageHandlerTests.swift +++ b/Tests/Unit/MiniAppScriptMessageHandlerTests.swift @@ -1106,7 +1106,7 @@ class MiniAppScriptMessageHandlerTests: QuickSpec { return } let environmentInfo = ResponseDecoder.decode(decodeType: MAHostEnvironmentInfo.self, data: responseData) - expect(environmentInfo?.sdkVersion).toEventually(equal("5.5.0")) + expect(environmentInfo?.sdkVersion).toEventually(equal("5.6.0")) expect(environmentInfo?.hostVersion).toEventually(equal(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String)) expect(environmentInfo?.hostLocale).toEventually(equal("en-US")) } diff --git a/USERGUIDE.md b/USERGUIDE.md index 09ce5b98..d06cd5d4 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -83,7 +83,7 @@ To integrate MiniApp SDK into your Xcode project using Swift Package Manager, ad ```ruby dependencies: [ - .package(url: "https://github.com/rakutentech/ios-miniapp.git", .upToNextMajor(from: "5.5.0")) + .package(url: "https://github.com/rakutentech/ios-miniapp.git", .upToNextMajor(from: "5.6.0")) ] ```