diff options
author | Kaushal Modi <[email protected]> | 2017-10-23 13:05:38 -0400 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-10-23 19:44:41 +0200 |
commit | c61998d3ac2e9c2756ba72d2e7381638cbe01a1f (patch) | |
tree | f14f0a0aebb6deaae62054a5c431d976551d0e2a | |
parent | 45ad8ac381ab71aec6f62bc0842934b8bdecd9d7 (diff) | |
download | hugo-c61998d3ac2e9c2756ba72d2e7381638cbe01a1f.tar.gz hugo-c61998d3ac2e9c2756ba72d2e7381638cbe01a1f.zip |
Update toml dep to fetch its latest master branch instead of v0.3.0
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
-rw-r--r-- | Gopkg.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gopkg.toml b/Gopkg.toml index 76c1bc81d..16e3b8009 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -2,7 +2,7 @@ [[constraint]] name = "github.com/BurntSushi/toml" - version = "0.3.0" + branch = "master" [[constraint]] name = "github.com/PuerkitoBio/purell" |