2016-07-21 14:33:49 +00:00
|
|
|
package version
|
2015-11-01 21:59:59 +00:00
|
|
|
|
|
|
|
var (
|
2015-11-06 17:11:57 +00:00
|
|
|
// Version holds the current version of traefik.
|
2016-06-02 13:17:04 +00:00
|
|
|
Version = "dev"
|
2016-07-05 19:03:37 +00:00
|
|
|
// Codename holds the current version codename of traefik.
|
|
|
|
Codename = "cheddar" // beta cheese
|
2015-11-06 17:11:57 +00:00
|
|
|
// BuildDate holds the build date of traefik.
|
2016-06-02 13:17:04 +00:00
|
|
|
BuildDate = "I don't remember exactly"
|
2015-11-01 21:59:59 +00:00
|
|
|
)
|