diff --git a/README.md b/README.md index 8cf5a41..ea6ccf8 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,18 @@ - Callbacks per command, flag and argument. - Help output that isn't as ugly as sin. +## Versions + +Kingpin uses [gopkgin.in](https://gopkg.in/alecthomas/kingpin.v1) for versioning. + ## Changes +- *2014-06-19* -- Stable v1.0.0 release. + - Support [cumulative positional](#consuming-all-remaining-arguments) arguments. + - Return error rather than panic when there are fatal errors not caught by + the type system. eg. when a default value is invalid. + - Use gokpg.in. + - *2014-06-10* -- Place-holder streamlining. - Renamed `MetaVar` to `PlaceHolder`. - Removed `MetaVarFromDefault`. Kingpin now uses [heuristics](#place-holders-in-help) @@ -44,7 +54,7 @@ package main import ( "fmt" - "gopkg.in/alecthomas/kingpin.v0" + "gopkg.in/alecthomas/kingpin.v1" ) var ( @@ -109,7 +119,7 @@ package main import ( "os" - "gopkg.in/alecthomas/kingpin.v0" + "gopkg.in/alecthomas/kingpin.v1" ) var ( diff --git a/examples/curl/curl.go b/examples/curl/curl.go index 0a8d566..d50e574 100644 --- a/examples/curl/curl.go +++ b/examples/curl/curl.go @@ -9,7 +9,7 @@ import ( "os" "strings" - "github.com/alecthomas/kingpin" + "gopkg.in/alecthomas/kingpin.v0" ) var ( diff --git a/examples/ping/ping.go b/examples/ping/ping.go index c770521..57dd239 100644 --- a/examples/ping/ping.go +++ b/examples/ping/ping.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/alecthomas/kingpin" + "gopkg.in/alecthomas/kingpin.v0" ) var (