Skip to content

Commit

Permalink
Merge pull request #18 from vapor/tn-rc-1
Browse files Browse the repository at this point in the history
Release Candidate 1
  • Loading branch information
tanner0101 authored Feb 28, 2020
2 parents ca72fe5 + 1473c83 commit d7a3a04
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: test
on:
- pull_request
jobs:
xenial:
jwt-kit_xenial:
container:
image: vapor/swift:5.1-xenial
image: vapor/swift:5.2-xenial
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: swift test --enable-test-discovery --sanitize=thread
bionic:
jwt-kit_bionic:
container:
image: vapor/swift:5.1-bionic
image: vapor/swift:5.2-bionic
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down
11 changes: 8 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.1
// swift-tools-version:5.2
import PackageDescription

let package = Package(
Expand All @@ -17,7 +17,12 @@ let package = Package(
],
targets: [
.target(name: "CJWTKitBoringSSL"),
.target(name: "JWTKit", dependencies: ["CJWTKitBoringSSL", "Crypto"]),
.testTarget(name: "JWTKitTests", dependencies: ["JWTKit"]),
.target(name: "JWTKit", dependencies: [
.target(name: "CJWTKitBoringSSL"),
.product(name: "Crypto", package: "swift-crypto"),
]),
.testTarget(name: "JWTKitTests", dependencies: [
.target(name: "JWTKit"),
]),
]
)
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
<p align="center">
<img src="https://user-images.githubusercontent.com/1342803/59471117-1c77b300-8e08-11e9-838e-441b280855b3.png" alt="JWTKit">
<img
src="https://user-images.githubusercontent.com/1342803/59471117-1c77b300-8e08-11e9-838e-441b280855b3.png"
height="64"
alt="JWTKit"
>
<br>
<br>
<a href="https://api.vapor.codes/jwt-kit/master/JWTKit/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/jwt-kit">
<img src="https://circleci.com/gh/vapor/jwt-kit.svg?style=shield" alt="Continuous Integration">
<a href="https://github.com/vapor/jwt-kit/actions">
<img src="https://github.com/vapor/jwt-kit/workflows/test/badge.svg" alt="Continuous Integration">
</a>
<a href="https://swift.org">
<img src="http://img.shields.io/badge/swift-5.0-brightgreen.svg" alt="Swift 5.0">
<img src="http://img.shields.io/badge/swift-5.2-brightgreen.svg" alt="Swift 5.2">
</a>
</p>


<hr>

**Original author**
Expand Down

0 comments on commit d7a3a04

Please sign in to comment.