Skip to content

Commit

Permalink
Rename Example to SwifterExample (#492)
Browse files Browse the repository at this point in the history
* Rename Example to SwifterExample

* Update CHANGELOG
  • Loading branch information
fortmarek committed Sep 12, 2021
1 parent d8dc616 commit d998bf5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ All notable changes to this project will be documented in this file. Changes not
* Fix misspell `serialise`. ([#473](https://github.com/httpswift/swifter/pull/473)) by [@mtgto](https://github.com/mtgto)
* Fix an issue causing Danger was not working properly. ([#486](https://github.com/httpswift/swifter/pull/486)) by [@Vkt0r](https://github.com/Vkt0r)

## Changed

- Rename `Example` product to `SwifterExample` ([#492](https://github.com/httpswift/swifter/pull/492) by [@fortmarek](https://github.com/fortmarek))

# [1.5.0]

## Added
Expand Down
9 changes: 5 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let package = Package(

products: [
.library(name: "Swifter", targets: ["Swifter"]),
.executable(name: "Example", targets: ["Example"])
.executable(name: "SwifterExample", targets: ["SwifterExample"])
],

dependencies: [],
Expand All @@ -20,11 +20,12 @@ let package = Package(
),

.target(
name: "Example",
name: "SwifterExample",
dependencies: [
"Swifter"
],
path: "Example"),
path: "SwifterExample"
),

.testTarget(
name: "SwifterTests",
Expand All @@ -34,4 +35,4 @@ let package = Package(
path: "Xcode/Tests"
)
]
)
)
File renamed without changes.

0 comments on commit d998bf5

Please sign in to comment.