Skip to content

Commit

Permalink
Merge pull request #216 from vapor/beta
Browse files Browse the repository at this point in the history
deps update
  • Loading branch information
loganwright authored Mar 27, 2017
2 parents 841dadf + d73095f commit ca3a005
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import PackageDescription

let beta = Version(2,0,0, prereleaseIdentifiers: ["alpha"])
let package = Package(
name: "Fluent",
targets: [
Expand All @@ -8,12 +9,12 @@ let package = Package(
],
dependencies: [
// Data structure for converting between multiple representations
.Package(url: "https://github.com/vapor/node.git", Version(2,0,0, prereleaseIdentifiers: ["alpha"])),
.Package(url: "https://github.com/vapor/node.git", beta),

// Core Components
.Package(url: "https://github.com/vapor/core.git", Version(2,0,0, prereleaseIdentifiers: ["alpha"])),
.Package(url: "https://github.com/vapor/core.git", beta),

// In memory Database
.Package(url: "https://github.com/vapor/sqlite.git", Version(2,0,0, prereleaseIdentifiers: ["alpha"])),
.Package(url: "https://github.com/vapor/sqlite.git", beta),
]
)

0 comments on commit ca3a005

Please sign in to comment.