Skip to content

Commit 7f53505

Browse files
committed
Update Swift version and fastlane script
1 parent 6acb08c commit 7f53505

File tree

4 files changed

+20
-38
lines changed

4 files changed

+20
-38
lines changed

Examples/iOS/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
2-
- KeychainSwift (19.0.0)
3-
- LMStorage (1.0.5):
2+
- KeychainSwift (20.0.0)
3+
- LMStorage (1.0.6):
44
- KeychainSwift
55

66
DEPENDENCIES:
@@ -15,9 +15,9 @@ EXTERNAL SOURCES:
1515
:path: "../../"
1616

1717
SPEC CHECKSUMS:
18-
KeychainSwift: a06190cf933ad46b1e0abc3d77d29c06331715c7
19-
LMStorage: 6b119a6613714d6864a9e7c55656e4bd0e6f69e2
18+
KeychainSwift: 0ce6a4d13f7228054d1a71bb1b500448fb2ab837
19+
LMStorage: f231736ce408aebabcdb90b1329e7695daa91a93
2020

2121
PODFILE CHECKSUM: 208c4e2d0bc43c26e11d7fc08d1151f5fc532b17
2222

23-
COCOAPODS: 1.11.2
23+
COCOAPODS: 1.11.3

Examples/tvOS/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
2-
- KeychainSwift (19.0.0)
3-
- LMStorage (1.0.5):
2+
- KeychainSwift (20.0.0)
3+
- LMStorage (1.0.6):
44
- KeychainSwift
55

66
DEPENDENCIES:
@@ -15,9 +15,9 @@ EXTERNAL SOURCES:
1515
:path: "../../"
1616

1717
SPEC CHECKSUMS:
18-
KeychainSwift: a06190cf933ad46b1e0abc3d77d29c06331715c7
19-
LMStorage: 6b119a6613714d6864a9e7c55656e4bd0e6f69e2
18+
KeychainSwift: 0ce6a4d13f7228054d1a71bb1b500448fb2ab837
19+
LMStorage: f231736ce408aebabcdb90b1329e7695daa91a93
2020

2121
PODFILE CHECKSUM: 208c4e2d0bc43c26e11d7fc08d1151f5fc532b17
2222

23-
COCOAPODS: 1.10.1
23+
COCOAPODS: 1.11.3

Package.swift

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.7
22

33
import PackageDescription
44

@@ -7,23 +7,20 @@ let package = Package(
77
platforms: [
88
.macOS(.v10_13),
99
.iOS(.v12),
10-
.watchOS(.v3),
11-
.tvOS(.v9)
10+
.watchOS(.v4),
11+
.tvOS(.v11)
1212
],
1313
products: [
14-
.library(
15-
name: "LMStorage",
16-
targets: ["LMStorage"]
17-
)
14+
.library(name: "LMStorage", targets: ["LMStorage"])
1815
],
1916
dependencies: [
20-
.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", from: "19.0.0")
17+
.package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "20.0.0")
2118
],
2219
targets: [
2320
.target(
2421
name: "LMStorage",
2522
dependencies: [
26-
"KeychainSwift"
23+
.product(name: "KeychainSwift", package: "keychain-swift")
2724
]
2825
),
2926
.testTarget(

fastlane/Fastfile

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,20 @@
11
# This file contains the fastlane.tools configuration
22
# You can find the documentation at https://docs.fastlane.tools
3-
#
4-
# For a list of all available actions, check out
5-
#
6-
# https://docs.fastlane.tools/actions
7-
#
8-
# For a list of all available plugins, check out
9-
#
10-
# https://docs.fastlane.tools/plugins/available-plugins
11-
#
123

134
default_platform(:ios)
145

156
platform :ios do
167

17-
# -----------------------
18-
# before all lanes
19-
# -----------------------
20-
before_all do |lane|
21-
sh("if [ -d ../reports ]; then rm -Rf ../reports; fi")
22-
sh("if [ -f *.xml ]; then rm -f *.xml; fi")
23-
end
24-
258
# -----------------------
269
# lanes
2710
# -----------------------
2811
lane :tests do
2912
spm(
3013
command: "test",
31-
build_path: "reports",
32-
configuration: "debug"
14+
configuration: "debug",
15+
enable_code_coverage: true,
16+
xcpretty_output: "simple",
17+
build_path: "./build"
3318
)
3419
end
3520

0 commit comments

Comments
 (0)