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