Skip to content

Commit de42987

Browse files
committed
restore podspec
1 parent edc1929 commit de42987

File tree

3 files changed

+56
-1
lines changed

3 files changed

+56
-1
lines changed

FlyingFox.podspec.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "FlyingFox",
3+
"version": "0.24.1",
4+
"summary": "Lightweight, HTTP server written in Swift using async/await",
5+
"homepage": "https://github.com/swhitty/FlyingFox",
6+
"authors": "Simon Whitty",
7+
"license": {
8+
"type": "MIT",
9+
"file": "LICENSE"
10+
},
11+
"source": {
12+
"git": "https://github.com/swhitty/FlyingFox.git",
13+
"tag": "0.24.1"
14+
},
15+
"platforms": {
16+
"ios": "13.0",
17+
"osx": "10.15",
18+
"tvos": "13.0",
19+
"watchos": "7.0"
20+
},
21+
"source_files": "FlyingFox/Sources/**/*.swift",
22+
"dependencies": {
23+
"FlyingSocks": "~> 0.24.1"
24+
},
25+
"pod_target_xcconfig": {
26+
"OTHER_SWIFT_FLAGS": "-package-name FlyingFox"
27+
},
28+
"swift_version": "5.10"
29+
}

FlyingSocks.podspec.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "FlyingSocks",
3+
"version": "0.24.1",
4+
"summary": "Lightweight, async sockets written in Swift using async/await",
5+
"homepage": "https://github.com/swhitty/FlyingFox",
6+
"authors": "Simon Whitty",
7+
"license": {
8+
"type": "MIT",
9+
"file": "LICENSE"
10+
},
11+
"source": {
12+
"git": "https://github.com/swhitty/FlyingFox.git",
13+
"tag": "0.24.1"
14+
},
15+
"platforms": {
16+
"ios": "13.0",
17+
"osx": "10.15",
18+
"tvos": "13.0",
19+
"watchos": "7.0"
20+
},
21+
"source_files": "FlyingSocks/Sources/**/*.swift",
22+
"pod_target_xcconfig": {
23+
"OTHER_SWIFT_FLAGS": "-package-name FlyingFox"
24+
},
25+
"swift_version": "5.10"
26+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ FlyingFox can be installed by using Swift Package Manager.
3232
To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file:
3333

3434
```swift
35-
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.24.0"))
35+
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.24.1"))
3636
```
3737

3838
# Usage

0 commit comments

Comments
 (0)