Skip to content

Commit

Permalink
Release Candidate 1 (#174)
Browse files Browse the repository at this point in the history
* rc.1

* html

* ci updates
  • Loading branch information
tanner0101 authored Feb 28, 2020
1 parent 3dbd918 commit ab30b90
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: test
on:
- pull_request
jobs:
xenial:
postgres-kit_xenial:
container:
image: vapor/swift:5.1-xenial
image: vapor/swift:5.2-xenial
services:
psql:
image: postgres
Expand All @@ -18,9 +18,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- run: swift test --enable-test-discovery --sanitize=thread
bionic:
postgres-kit_bionic:
container:
image: vapor/swift:5.1-bionic
image: vapor/swift:5.2-bionic
services:
psql:
image: postgres
Expand All @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- run: swift test --enable-test-discovery --sanitize=thread
fluent:
fluent-postgres-driver:
container:
image: vapor/swift:5.2
services:
Expand Down
15 changes: 11 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// swift-tools-version:5.1
// swift-tools-version:5.2
import PackageDescription

let package = Package(
name: "postgres-kit",
platforms: [
.macOS(.v10_14)
.macOS(.v10_15)
],
products: [
.library(name: "PostgresKit", targets: ["PostgresKit"]),
Expand All @@ -15,7 +15,14 @@ let package = Package(
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0-beta.2"),
],
targets: [
.target(name: "PostgresKit", dependencies: ["AsyncKit", "PostgresNIO", "SQLKit"]),
.testTarget(name: "PostgresKitTests", dependencies: ["PostgresKit", "SQLKitBenchmark"]),
.target(name: "PostgresKit", dependencies: [
.product(name: "AsyncKit", package: "async-kit"),
.product(name: "PostgresNIO", package: "postgres-nio"),
.product(name: "SQLKit", package: "sql-kit"),
]),
.testTarget(name: "PostgresKitTests", dependencies: [
.target(name: "PostgresKit"),
.product(name: "SQLKitBenchmark", package: "sql-kit"),
]),
]
)
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
<p align="center">
<img src="https://user-images.githubusercontent.com/1342803/59063319-d190f500-8875-11e9-8fe6-16197dd56d0f.png" alt="PostgresKit">
<img
src="https://user-images.githubusercontent.com/1342803/59063319-d190f500-8875-11e9-8fe6-16197dd56d0f.png"
height="64"
alt="PostgresKit"
>
<br>
<br>
<a href="https://api.vapor.codes/postgres-kit/master/PostgresKit/index.html">
<img src="http://img.shields.io/badge/api-docs-2196f3.svg" alt="Documentation">
<a href="https://docs.vapor.codes/4.0/">
<img src="http://img.shields.io/badge/read_the-docs-2196f3.svg" alt="Documentation">
</a>
<a href="https://discord.gg/vapor">
<img src="https://img.shields.io/discord/431917998102675485.svg" alt="Team Chat">
</a>
<a href="LICENSE">
<img src="http://img.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT License">
</a>
<a href="https://circleci.com/gh/vapor/postgres-kit">
<img src="https://circleci.com/gh/vapor/postgres-kit.svg?style=shield" alt="Continuous Integration">
<a href="https://github.com/vapor/sql-kit/actions">
<img src="https://github.com/vapor/sql-kit/workflows/test/badge.svg" alt="Continuous Integration">
</a>
<a href="https://swift.org">
<img src="http://img.shields.io/badge/swift-5-brightgreen.svg" alt="Swift 5">
<img src="http://img.shields.io/badge/swift-5.2-brightgreen.svg" alt="Swift 5.2">
</a>
</p>

<hr>

See [vapor-community/postgresql](https://github.com/vapor-community/postgresql/) for `libpq` based version.

0 comments on commit ab30b90

Please sign in to comment.