Skip to content

Commit

Permalink
SQL 0.7.0 conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
davidask committed May 12, 2016
1 parent 7363234 commit bf7dbb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
swift-DEVELOPMENT-SNAPSHOT-2016-04-12-a
DEVELOPMENT-SNAPSHOT-2016-05-03-a
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ let package = Package(
name: "PostgreSQL",
dependencies: [
.Package(url: "https://github.com/Zewo/CLibpq.git", majorVersion: 0, minor: 5),
.Package(url: "https://github.com/Zewo/SQL.git", majorVersion: 0, minor: 5),
.Package(url: "https://github.com/Zewo/SQL.git", majorVersion: 0, minor: 7),
]
)
2 changes: 1 addition & 1 deletion Tests/PostgreSQLTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public final class StandardOutputAppender: Appender {

class PostgreSQLTests: XCTestCase {

let connection = PostgreSQL.Connection("postgres://localhost:5432/swift_test")
let connection = try! PostgreSQL.Connection(URI("postgres://localhost:5432/swift_test"))


let logger = Logger(name: "SQL Logger", appenders: [StandardOutputAppender()])
Expand Down

0 comments on commit bf7dbb1

Please sign in to comment.