Skip to content

Commit d998bf5

Browse files
authored
Rename Example to SwifterExample (#492)
* Rename Example to SwifterExample * Update CHANGELOG
1 parent d8dc616 commit d998bf5

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ All notable changes to this project will be documented in this file. Changes not
2727
* Fix misspell `serialise`. ([#473](https://github.com/httpswift/swifter/pull/473)) by [@mtgto](https://github.com/mtgto)
2828
* Fix an issue causing Danger was not working properly. ([#486](https://github.com/httpswift/swifter/pull/486)) by [@Vkt0r](https://github.com/Vkt0r)
2929

30+
## Changed
31+
32+
- Rename `Example` product to `SwifterExample` ([#492](https://github.com/httpswift/swifter/pull/492) by [@fortmarek](https://github.com/fortmarek))
33+
3034
# [1.5.0]
3135

3236
## Added

Package.swift

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77

88
products: [
99
.library(name: "Swifter", targets: ["Swifter"]),
10-
.executable(name: "Example", targets: ["Example"])
10+
.executable(name: "SwifterExample", targets: ["SwifterExample"])
1111
],
1212

1313
dependencies: [],
@@ -20,11 +20,12 @@ let package = Package(
2020
),
2121

2222
.target(
23-
name: "Example",
23+
name: "SwifterExample",
2424
dependencies: [
2525
"Swifter"
2626
],
27-
path: "Example"),
27+
path: "SwifterExample"
28+
),
2829

2930
.testTarget(
3031
name: "SwifterTests",
@@ -34,4 +35,4 @@ let package = Package(
3435
path: "Xcode/Tests"
3536
)
3637
]
37-
)
38+
)

0 commit comments

Comments
 (0)