Commit 0b46617f authored by Chris Molozian's avatar Chris Molozian
Browse files

Update 'uuid' dependency.

parent 267c0ac9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -168,12 +168,12 @@
  version = "v1.12.0"

[[projects]]
  digest = "1:181fe10dcb708edd7c68c5781928b6657612771f81dd1773287386b6982c94e2"
  digest = "1:660175e70abad3868119f2c29f43339608d7d3b93c8eb178b812ed330be6c07b"
  name = "github.com/gofrs/uuid"
  packages = ["."]
  pruneopts = ""
  revision = "3a54a6416087bae7aa0ac32dd79fe1bf87bc99e4"
  version = "v2.1.0"
  revision = "7077aa61129615a0d7f45c49101cd011ab221c27"
  version = "v3.1.2"

[[projects]]
  digest = "1:f958a1c137db276e52f0b50efee41a1a389dcdded59a69711f3e872757dab34b"
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

[[constraint]]
  name = "github.com/gofrs/uuid"
  version = "~2.1.0"
  version = "~3.1.2"

[[constraint]]
  name = "github.com/rubenv/sql-migrate"
+13 −0
Original line number Diff line number Diff line
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# binary bundle generated by go-fuzz
uuid-fuzz.zip
+16 −12
Original line number Diff line number Diff line
@@ -5,15 +5,19 @@ go:
  - 1.8
  - 1.9
  - "1.10"
  - 1.11
  - tip
matrix:
  allow_failures:
    - go: tip
  fast_finish: true
env:
  - GO111MODULE=on
before_install:
    - go get github.com/mattn/goveralls
  - go get golang.org/x/tools/cmd/cover
script:
    - $HOME/gopath/bin/goveralls -service=travis-ci
  - go test ./... -race -coverprofile=coverage.txt -covermode=atomic
after_success:
  - bash <(curl -s https://codecov.io/bash)
notifications:
  email: false
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
[![License](https://img.shields.io/github/license/gofrs/uuid.svg)](https://github.com/gofrs/uuid/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/gofrs/uuid.svg?branch=master)](https://travis-ci.org/gofrs/uuid)
[![GoDoc](http://godoc.org/github.com/gofrs/uuid?status.svg)](http://godoc.org/github.com/gofrs/uuid)
[![Coverage Status](https://coveralls.io/repos/github/gofrs/uuid/badge.svg?branch=master)](https://coveralls.io/github/gofrs/uuid)
[![Coverage Status](https://codecov.io/gh/gofrs/uuid/branch/master/graphs/badge.svg?branch=master)](https://codecov.io/gh/gofrs/uuid/)
[![Go Report Card](https://goreportcard.com/badge/github.com/gofrs/uuid)](https://goreportcard.com/report/github.com/gofrs/uuid)

Package uuid provides a pure Go implementation of Universally Unique Identifiers
Loading