Skip to content

Commit 45791d3

Browse files
authored
Merge pull request #156 from vapor/tn-rc-1
Release Candidate 1
2 parents 65ab718 + a6490ee commit 45791d3

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: test
22
on:
33
- pull_request
44
jobs:
5-
xenial:
5+
leaf_xenial:
66
container:
7-
image: vapor/swift:5.1-xenial
7+
image: vapor/swift:5.2-xenial
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v1
1111
- run: swift test --enable-test-discovery --sanitize=thread
12-
bionic:
12+
leaf_bionic:
1313
container:
14-
image: vapor/swift:5.1-bionic
14+
image: vapor/swift:5.2-bionic
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v1

Package.swift

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

44
let package = Package(
@@ -10,11 +10,17 @@ let package = Package(
1010
.library(name: "Leaf", targets: ["Leaf"]),
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/vapor/leaf-kit.git", from: "1.0.0-beta.2"),
14-
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-beta.4"),
13+
.package(url: "https://github.com/vapor/leaf-kit.git", from: "1.0.0-rc.1"),
14+
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-rc.1"),
1515
],
1616
targets: [
17-
.target(name: "Leaf", dependencies: ["LeafKit", "Vapor"]),
18-
.testTarget(name: "LeafTests", dependencies: ["Leaf", "XCTVapor"]),
17+
.target(name: "Leaf", dependencies: [
18+
.product(name: "LeafKit", package: "leaf-kit"),
19+
.product(name: "Vapor", package: "vapor"),
20+
]),
21+
.testTarget(name: "LeafTests", dependencies: [
22+
.target(name: "Leaf"),
23+
.product(name: "XCTVapor", package: "vapor"),
24+
]),
1925
]
2026
)

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<p align="center">
2-
<img src="https://user-images.githubusercontent.com/1342803/36648663-5357293c-1a64-11e8-8ea1-9c2cddcdba39.png" height="64" alt="Leaf">
2+
<img
3+
src="https://user-images.githubusercontent.com/1342803/75696046-ee2d5280-5c78-11ea-8201-38f109c3a0eb.png"
4+
height="64"
5+
alt="Leaf"
6+
>
37
<br>
48
<br>
5-
<a href="https://docs.vapor.codes/3.0/leaf/getting-started/">
9+
<a href="https://docs.vapor.codes/4.0/">
610
<img src="http://img.shields.io/badge/read_the-docs-2196f3.svg" alt="Documentation">
711
</a>
812
<a href="https://discord.gg/vapor">
@@ -11,10 +15,10 @@
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/leaf">
15-
<img src="https://circleci.com/gh/vapor/leaf.svg?style=shield" alt="Continuous Integration">
18+
<a href="https://github.com/vapor/leaf/actions">
19+
<img src="https://github.com/vapor/leaf/workflows/test/badge.svg" alt="Continuous Integration">
1620
</a>
1721
<a href="https://swift.org">
18-
<img src="http://img.shields.io/badge/swift-4.1-brightgreen.svg" alt="Swift 4.1">
22+
<img src="http://img.shields.io/badge/swift-5.2-brightgreen.svg" alt="Swift 5.2">
1923
</a>
2024
</p>

0 commit comments

Comments
 (0)