Skip to content

Commit 31b5a3d

Browse files
committed
Release 0.0.2
1 parent 2544d2c commit 31b5a3d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Examples/CloudFunctions/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let package = Package(
2222
dependencies: [
2323
// This is the dependency on the swift-tencent-scf-runtime library.
2424
// In real-world projects, this would say:
25-
// .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "1.0.0")
25+
// .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "0.0.1")
2626
.package(name: "swift-tencent-scf-runtime", path: "../.."),
2727
],
2828
targets: [

Examples/LocalDebugging/MyApp/MyApp/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
<string>1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
21+
<key>INIntentsSupported</key>
22+
<array>
23+
<string>Intent</string>
24+
</array>
2125
<key>LSRequiresIPhoneOS</key>
2226
<true/>
2327
<key>UIApplicationSceneManifest</key>

Examples/LocalDebugging/MyCloudFunction/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
dependencies: [
1414
// This is the dependency on the swift-tencent-scf-runtime library.
1515
// In real-world projects this would say:
16-
// .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "0.1.0")
16+
// .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "0.0.1")
1717
.package(name: "swift-tencent-scf-runtime", path: "../../.."),
1818
.package(name: "Shared", path: "../Shared"),
1919
],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let package = Package(
3838
.executable(name: "MyCloudFunction", targets: ["MyCloudFunction"]),
3939
],
4040
dependencies: [
41-
.package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "0.1.0"),
41+
.package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git", from: "0.0.1"),
4242
],
4343
targets: [
4444
.target(name: "MyCloudFunction", dependencies: [

0 commit comments

Comments
 (0)