Skip to content

Commit

Permalink
dbkit 1.0.0 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Apr 25, 2018
1 parent 709cdb4 commit db8085e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Expand Up @@ -11,13 +11,13 @@ let package = Package(
.package(url: "https://github.com/vapor/core.git", from: "3.0.0"),

// ✳️ Swift ORM framework (queries, models, and relations) for building NoSQL and SQL database integrations.
.package(url: "https://github.com/vapor/fluent.git", .branch("dbkit-gm")),
.package(url: "https://github.com/vapor/fluent.git", from: "3.0.0-rc"),

// 📦 Dependency injection / inversion of control framework.
.package(url: "https://github.com/vapor/service.git", from: "1.0.0"),

// 🔵 SQLite 3 wrapper for Swift
.package(url: "https://github.com/vapor/sqlite.git", .branch("dbkit-gm")),
.package(url: "https://github.com/vapor/sqlite.git", from: "3.0.0-rc"),
],
targets: [
.target(name: "FluentSQLite", dependencies: [
Expand Down
7 changes: 7 additions & 0 deletions circle.yml
Expand Up @@ -20,6 +20,12 @@ jobs:
- run:
name: Run unit tests
command: swift test

linux-release:
docker:
- image: codevapor/swift:4.1
steps:
- checkout
- run:
name: Compile code with optimizations
command: swift build -c release
Expand All @@ -29,6 +35,7 @@ workflows:
tests:
jobs:
- linux
- linux-release
# - macos

nightly:
Expand Down

0 comments on commit db8085e

Please sign in to comment.