Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Commit

Permalink
Update Package.swift (#41)
Browse files Browse the repository at this point in the history
Update Package.swift to use Vapor 2 release dependencies
  • Loading branch information
pruthvikar authored and vzsg committed May 17, 2017
1 parent 6accbb7 commit fb4119f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import PackageDescription

let beta = Version(2,0,0, prereleaseIdentifiers: ["beta"])

let package = Package(
name: "PostgreSQL",
dependencies: [
// Module map for `libpq`
.Package(url: "https://github.com/vapor-community/cpostgresql.git", beta),
.Package(url: "https://github.com/vapor-community/cpostgresql.git", majorVersion: 2),

// Data structure for converting between multiple representations
.Package(url: "https://github.com/vapor/node.git", beta),
.Package(url: "https://github.com/vapor/node.git", majorVersion: 2),

// Core extensions, type-aliases, and functions that facilitate common tasks
.Package(url: "https://github.com/vapor/core.git", beta),
.Package(url: "https://github.com/vapor/core.git", majorVersion: 2)
]
)

0 comments on commit fb4119f

Please sign in to comment.