Commit cb0f0004 authored by Chris Molozian's avatar Chris Molozian
Browse files

Update 'pq' dependency.

parent 0b46617f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -262,14 +262,14 @@
  version = "v1.4.1"

[[projects]]
  digest = "1:09792d732b079867772cdbabdf7dc54ef9f9d04c998a9ce6226657151fccbb94"
  digest = "1:bc36cd980d0069137800b505af4937c6109f4dc7cefe39d7c2efc7c8d51528d6"
  name = "github.com/lib/pq"
  packages = [
    ".",
    "oid",
  ]
  pruneopts = ""
  revision = "90697d60dd844d5ef6ff15135d0203f65d2f53b8"
  revision = "9eb73efc1fcc404148b56765b0d3f61d9a5ef8ee"

[[projects]]
  digest = "1:63722a4b1e1717be7b98fc686e0b30d5e7f734b9e93d7dee86293b6deab7ea28"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@

[[constraint]]
  name = "github.com/lib/pq"
  revision = "90697d60dd844d5ef6ff15135d0203f65d2f53b8"
  revision = "9eb73efc1fcc404148b56765b0d3f61d9a5ef8ee"

[[constraint]]
  name = "github.com/gorilla/handlers"
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ megacheck_install() {
}

golint_install() {
	go get github.com/golang/lint/golint
	go get golang.org/x/lint/golint
}

$1
+2 −2
Original line number Diff line number Diff line
language: go

go:
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - 1.11.x
  - master

sudo: true
@@ -44,7 +44,7 @@ script:
  - >
    goimports -d -e $(find -name '*.go') | awk '{ print } END { exit NR == 0 ? 0 : 1 }'
  - go vet ./...
  - megacheck -go 1.8 ./...
  - megacheck -go 1.9 ./...
  - golint ./...
  - PQTEST_BINARY_PARAMETERS=no  go test -race -v ./...
  - PQTEST_BINARY_PARAMETERS=yes go test -race -v ./...
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
## Docs

For detailed documentation and basic usage examples, please see the package
documentation at <http://godoc.org/github.com/lib/pq>.
documentation at <https://godoc.org/github.com/lib/pq>.

## Tests

Loading