Skip to content

Commit ab30b90

Browse files
authored
Release Candidate 1 (vapor#174)
* rc.1 * html * ci updates
1 parent 3dbd918 commit ab30b90

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: test
22
on:
33
- pull_request
44
jobs:
5-
xenial:
5+
postgres-kit_xenial:
66
container:
7-
image: vapor/swift:5.1-xenial
7+
image: vapor/swift:5.2-xenial
88
services:
99
psql:
1010
image: postgres
@@ -18,9 +18,9 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v1
2020
- run: swift test --enable-test-discovery --sanitize=thread
21-
bionic:
21+
postgres-kit_bionic:
2222
container:
23-
image: vapor/swift:5.1-bionic
23+
image: vapor/swift:5.2-bionic
2424
services:
2525
psql:
2626
image: postgres
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v1
3636
- run: swift test --enable-test-discovery --sanitize=thread
37-
fluent:
37+
fluent-postgres-driver:
3838
container:
3939
image: vapor/swift:5.2
4040
services:

Package.swift

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.2
22
import PackageDescription
33

44
let package = Package(
55
name: "postgres-kit",
66
platforms: [
7-
.macOS(.v10_14)
7+
.macOS(.v10_15)
88
],
99
products: [
1010
.library(name: "PostgresKit", targets: ["PostgresKit"]),
@@ -15,7 +15,14 @@ let package = Package(
1515
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0-beta.2"),
1616
],
1717
targets: [
18-
.target(name: "PostgresKit", dependencies: ["AsyncKit", "PostgresNIO", "SQLKit"]),
19-
.testTarget(name: "PostgresKitTests", dependencies: ["PostgresKit", "SQLKitBenchmark"]),
18+
.target(name: "PostgresKit", dependencies: [
19+
.product(name: "AsyncKit", package: "async-kit"),
20+
.product(name: "PostgresNIO", package: "postgres-nio"),
21+
.product(name: "SQLKit", package: "sql-kit"),
22+
]),
23+
.testTarget(name: "PostgresKitTests", dependencies: [
24+
.target(name: "PostgresKit"),
25+
.product(name: "SQLKitBenchmark", package: "sql-kit"),
26+
]),
2027
]
2128
)

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
<p align="center">
2-
<img src="https://user-images.githubusercontent.com/1342803/59063319-d190f500-8875-11e9-8fe6-16197dd56d0f.png" alt="PostgresKit">
2+
<img
3+
src="https://user-images.githubusercontent.com/1342803/59063319-d190f500-8875-11e9-8fe6-16197dd56d0f.png"
4+
height="64"
5+
alt="PostgresKit"
6+
>
37
<br>
48
<br>
5-
<a href="https://api.vapor.codes/postgres-kit/master/PostgresKit/index.html">
6-
<img src="http://img.shields.io/badge/api-docs-2196f3.svg" alt="Documentation">
9+
<a href="https://docs.vapor.codes/4.0/">
10+
<img src="http://img.shields.io/badge/read_the-docs-2196f3.svg" alt="Documentation">
711
</a>
812
<a href="https://discord.gg/vapor">
913
<img src="https://img.shields.io/discord/431917998102675485.svg" alt="Team Chat">
1014
</a>
1115
<a href="LICENSE">
1216
<img src="http://img.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT License">
1317
</a>
14-
<a href="https://circleci.com/gh/vapor/postgres-kit">
15-
<img src="https://circleci.com/gh/vapor/postgres-kit.svg?style=shield" alt="Continuous Integration">
18+
<a href="https://github.com/vapor/sql-kit/actions">
19+
<img src="https://github.com/vapor/sql-kit/workflows/test/badge.svg" alt="Continuous Integration">
1620
</a>
1721
<a href="https://swift.org">
18-
<img src="http://img.shields.io/badge/swift-5-brightgreen.svg" alt="Swift 5">
22+
<img src="http://img.shields.io/badge/swift-5.2-brightgreen.svg" alt="Swift 5.2">
1923
</a>
2024
</p>
21-
22-
<hr>
23-
24-
See [vapor-community/postgresql](https://github.com/vapor-community/postgresql/) for `libpq` based version.
25-

0 commit comments

Comments
 (0)