Skip to content

Commit

Permalink
Merge pull request #48 from exercism/1.1.3
Browse files Browse the repository at this point in the history
[1.1.3]: Various improvments and fixes
  • Loading branch information
meatball133 authored Aug 19, 2023
2 parents c7d851b + 32f5cab commit 21813f3
Show file tree
Hide file tree
Showing 3 changed files with 303 additions and 263 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.1.3

- Fixed an issue making so outputs on multiple lines missed the last line
- Formatted all files using the formatter

# 1.1.2

- Updated test files to follow a more modern design.
Expand Down
30 changes: 16 additions & 14 deletions src/testrunner/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
import PackageDescription

let package = Package(
name: "TestRunner",
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/apple/swift-syntax.git", exact: "508.0.1")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(name: "TestRunner", dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
]),
]
name: "TestRunner",
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/apple/swift-syntax.git", exact: "508.0.1")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "TestRunner",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
])
]
)
Loading

0 comments on commit 21813f3

Please sign in to comment.