Update toml dep to fetch its latest master branch instead of v0.3.0
authorKaushal Modi <kaushal.modi@gmail.com>
Mon, 23 Oct 2017 17:05:38 +0000 (13:05 -0400)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Oct 2017 17:44:41 +0000 (19:44 +0200)
toml v0.3.0 was released in March 2017 and is missing few fixes made in toml
package after the fact. So use the master branch instead.

This fixes a regression when switch was made from govendor vendor.json dep
management to Go dep.

Fixes #3998

Gopkg.toml

index 76c1bc81d71f674ae5a2c91456da019bf2917d58..16e3b800928285d6c326ec2e593a71b5f25e0ee1 100644 (file)
@@ -2,7 +2,7 @@
 
 [[constraint]]
   name = "github.com/BurntSushi/toml"
-  version = "0.3.0"
+  branch = "master"
 
 [[constraint]]
   name = "github.com/PuerkitoBio/purell"