Skip to content

Commit 7cdc982

Browse files
committed
0.8.0
1 parent 8a0cadb commit 7cdc982

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

FlyingFox.podspec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FlyingFox",
3-
"version": "0.7.0",
3+
"version": "0.8.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.7.0"
13+
"tag": "0.8.0"
1414
},
1515
"platforms": {
1616
"ios": "13.0",
@@ -19,7 +19,7 @@
1919
},
2020
"source_files": "FlyingFox/Sources/**/*.swift",
2121
"dependencies": {
22-
"FlyingSocks": "~> 0.7.0"
22+
"FlyingSocks": "~> 0.8.0"
2323
},
2424
"swift_version": "5.5"
2525
}

FlyingSocks.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FlyingSocks",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"summary": "Lightweight, async sockets 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.7.0"
13+
"tag": "0.8.0"
1414
},
1515
"platforms": {
1616
"ios": "13.0",

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ FlyingFox can be installed by using Swift Package Manager.
3131
To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file:
3232

3333
```swift
34-
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.7.0"))
34+
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.8.0"))
3535
```
3636

3737
# Usage
@@ -320,7 +320,7 @@ protocol AsyncSocketPool {
320320
The pool can be tuned to adjust both the time spent within [`poll(2)`](https://www.freebsd.org/cgi/man.cgi?poll) and at the end of each iteration with [`Task.yield()`](https://developer.apple.com/documentation/swift/task/3814840-yield) or [`Task.sleep()`](https://developer.apple.com/documentation/swift/task/3862701-sleep)
321321

322322
```swift
323-
let pool = PollingSocketPool(pollInterval: .immediate, loopInterval: .seconds(0.05))
323+
let pool = PollingSocketPool(pollInterval: .immediate, loopInterval: .seconds(0.1))
324324
let server = HTTPServer(port: 80, pool: pool)
325325
```
326326

0 commit comments

Comments
 (0)