Skip to content

Commit 77b3733

Browse files
committed
Use tags
1 parent c2f486b commit 77b3733

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ let package = Package(
99
],
1010
dependencies: [
1111
// Swift Promises, Futures, and Streams.
12-
.package(url: "https://github.com/vapor/async.git", .branch("beta")),
12+
.package(url: "https://github.com/vapor/async.git", .exact("1.0.0-beta.1")),
1313

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

1717
// Swift ORM framework (queries, models, and relations) for building NoSQL and SQL database integrations.
18-
.package(url: "https://github.com/vapor/fluent.git", .branch("beta")),
18+
.package(url: "https://github.com/vapor/fluent.git", .exact("3.0.0-beta.1")),
1919

2020
// Pure Swift, async/non-blocking client for PostgreSQL.
21-
.package(url: "https://github.com/vapor/postgresql.git", .branch("beta")),
21+
.package(url: "https://github.com/vapor/postgresql.git", .exact("1.0.0-beta.1")),
2222
],
2323
targets: [
2424
.target(name: "FluentPostgreSQL", dependencies: ["Async", "CodableKit", "Fluent", "FluentSQL", "PostgreSQL"]),

0 commit comments

Comments
 (0)