Skip to content

Commit

Permalink
prerelease version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Feb 15, 2018
1 parent 2c9333d commit 29b446c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ let package = Package(
],
dependencies: [
// Swift Promises, Futures, and Streams.
.package(url: "https://github.com/vapor/async.git", .exact("1.0.0-beta.1")),
.package(url: "https://github.com/vapor/async.git", "1.0.0-beta.1"..<"1.0.0-beta.2"),

// Core extensions, type-aliases, and functions that facilitate common tasks.
.package(url: "https://github.com/vapor/core.git", .exact("3.0.0-beta.1")),
.package(url: "https://github.com/vapor/core.git", "3.0.0-beta.1"..<"3.0.0-beta.2"),

// Cryptography modules (formerly CryptoKitten)
.package(url: "https://github.com/vapor/crypto.git", .exact("3.0.0-beta.1")),
.package(url: "https://github.com/vapor/crypto.git", "3.0.0-beta.1"..<"3.0.0-beta.2"),

// Core services for creating database integrations.
.package(url: "https://github.com/vapor/database-kit.git", .exact("1.0.0-beta.2")),
.package(url: "https://github.com/vapor/database-kit.git", "1.0.0-beta.2"..<"1.0.0-beta.3"),

// Non-blocking networking for Swift (HTTP and WebSockets).
.package(url: "https://github.com/vapor/engine.git", .exact("3.0.0-beta.2")),
.package(url: "https://github.com/vapor/engine.git", "3.0.0-beta.2"..<"3.0.0-beta.3"),

// Service container and configuration system.
.package(url: "https://github.com/vapor/service.git", .exact("1.0.0-beta.1")),
.package(url: "https://github.com/vapor/service.git", "1.0.0-beta.1"..<"1.0.0-beta.2"),

// Pure Swift (POSIX) TCP and UDP non-blocking socket layer, with event-driven Server and Client.
.package(url: "https://github.com/vapor/sockets.git", .exact("3.0.0-beta.2")),
.package(url: "https://github.com/vapor/sockets.git", "3.0.0-beta.2"..<"3.0.0-beta.3"),
],
targets: [
.target(name: "PostgreSQL", dependencies: ["Async", "Bits", "Crypto", "DatabaseKit", "Service", "TCP"]),
Expand Down

0 comments on commit 29b446c

Please sign in to comment.