From 968649d1c77c5670c71fc1274b3374870482fdba Mon Sep 17 00:00:00 2001 From: Fumito Ito Date: Sun, 16 Oct 2022 22:32:04 +0900 Subject: [PATCH 1/2] version bump --- README.md | 4 ++-- SwiftyInAppMessaging.podspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1804524..fd09338 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ func application(_ application: UIApplication, didFinishLaunchWithOptions launch Just add your `Cartfile` ```ruby -github "fumito-ito/SwiftyInAppMessaging" ~> 1.1.3 +github "fumito-ito/SwiftyInAppMessaging" ~> 2.0.0 ``` and run `carthage update` @@ -120,7 +120,7 @@ let package = Package( name: "MyPackage", products: [...], dependencies: [ - .package(url: "https://github.com/fumito-ito/SwiftyInAppMessaging.git", .upToNextMajor(from: "1.1.3")) + .package(url: "https://github.com/fumito-ito/SwiftyInAppMessaging.git", .upToNextMajor(from: "2.0.0")) ] ) ``` diff --git a/SwiftyInAppMessaging.podspec b/SwiftyInAppMessaging.podspec index 3273c6e..5833499 100644 --- a/SwiftyInAppMessaging.podspec +++ b/SwiftyInAppMessaging.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.name = "SwiftyInAppMessaging" - spec.version = "1.1.3" + spec.version = "2.0.0" spec.summary = "The easiest way to use your customized view and In-App Messaging's default view." # This description is used to generate tags and improve search results. From f807142e66b87b0536e3136435918570859d8f19 Mon Sep 17 00:00:00 2001 From: Fumito Ito Date: Sun, 16 Oct 2022 22:46:05 +0900 Subject: [PATCH 2/2] upgrade swift-format --- .github/workflows/run-test-on-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-test-on-push.yml b/.github/workflows/run-test-on-push.yml index 7a8121f..32fb90b 100644 --- a/.github/workflows/run-test-on-push.yml +++ b/.github/workflows/run-test-on-push.yml @@ -22,7 +22,7 @@ jobs: - name: Lint run: | - brew install swift-format && swift-format lint -s -r Sources -r Tests + brew update && brew install swift-format && swift-format lint -s -r Sources -r Tests - name: Build run: swift build