Skip to content

Commit 383a6d9

Browse files
committed
Merge branch 'develop'
2 parents c984b69 + 8f73915 commit 383a6d9

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/swift.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
image:
16-
- swift:5.0.3-xenial
17-
- swift:5.1.5-xenial
1816
- swift:5.2.5-xenial
1917
- swift:5.3.2-xenial
2018
- swift:5.3.2-bionic
19+
- swift:5.5.0-focal
2120
container: ${{ matrix.image }}
2221
steps:
2322
- name: Checkout Repository
@@ -32,7 +31,7 @@ jobs:
3231
- name: Select latest available Xcode
3332
uses: maxim-lobanov/[email protected]
3433
with:
35-
xcode-version: 12.2
34+
xcode-version: 13
3635
- name: Checkout Repository
3736
uses: actions/checkout@v2
3837
- name: Build Swift Debug Package

Package.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.0
1+
// swift-tools-version:5.2
22

33
import PackageDescription
44

@@ -12,15 +12,17 @@ let package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Macro-swift/Macro.git",
15-
from: "0.6.2"),
15+
from: "0.8.11"),
1616
.package(url: "https://github.com/Macro-swift/MacroExpress.git",
17-
from: "0.6.0"),
17+
from: "0.8.8"),
1818
.package(url: "https://github.com/AlwaysRightInstitute/SwiftXmlRpc.git",
1919
from: "0.8.6")
2020
],
2121

2222
targets: [
23-
.target(name: "MacroXmlRpc",
24-
dependencies: [ "Macro", "MacroExpress", "XmlRpc" ])
23+
.target(name: "MacroXmlRpc", dependencies: [
24+
"Macro", "MacroExpress",
25+
.product(name: "XmlRpc", package: "SwiftXmlRpc")
26+
])
2527
]
2628
)

0 commit comments

Comments
 (0)