Skip to content

Commit a69e578

Browse files
committed
Bump Version
1 parent 2c4b10b commit a69e578

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

FlyingFox.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FlyingFox",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"summary": "Lightweight, HTTP server written in Swift using async/await",
55
"homepage": "https://github.com/swhitty/FlyingFox",
66
"authors": "Simon Whitty",
@@ -10,7 +10,7 @@
1010
},
1111
"source": {
1212
"git": "https://github.com/swhitty/FlyingFox.git",
13-
"tag": "0.3.1"
13+
"tag": "0.4.0"
1414
},
1515
"platforms": {
1616
"ios": "13.0",

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
FlyingFox can be installed by using Swift Package Manager.
1818

19-
**Note:** FlyingFox requires Swift 5.5 on Xcode 13.2+ or Linux to build. It runs on iOS 13+, tvOS 13+ or macOS 10.15+.
19+
**Note:** FlyingFox requires Swift 5.5 on Xcode 13.2+. It runs on iOS 13+, tvOS 13+, macOS 10.15+ and Linux.
2020

2121
To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file:
2222

2323
```swift
24-
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.3.1"))
24+
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.4.0"))
2525
```
2626

2727
# Usage

Sources/HTTPRoute.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public struct HTTPRoute: Sendable {
6060
self.body = body
6161
}
6262

63-
public enum Component: Equatable, Sendable {
63+
public enum Component: Sendable, Equatable {
6464
case wildcard
6565
case caseInsensitive(String)
6666

0 commit comments

Comments
 (0)