File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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+ )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments