mediocregopher / goat

A simple, yaml-based go dependency manager
Apache License 2.0
68 stars 11 forks source link

Move to gopkg.in for YAML #23

Closed tummychow closed 10 years ago

tummychow commented 10 years ago

The launchpad repository for YAML is deprecated and has moved to GitHub (go-yaml/yaml). The maintainer, @niemeyer, is also the maintainer of gopkg.in and recommends that you use it for the YAML package.

Another advantage, albeit mostly theoretical: if there were ever a v2 of the YAML package, gopkg.in lets you use go get github.com/mediocregopher/goat without risking breakage.

The APIs are the same for these packages, so there's no real code changes.

mediocregopher commented 10 years ago

Ballersauce, thanks! The go get for the old goyaml package took FOREVER, and this one doesn't, so that's another added bonus :P

tummychow commented 10 years ago

Hah, strange. I wonder if it was a bzr thing. Anyway you're welcome, and thanks for the quick merge!