2016-07-09 14:09:27 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions defined in
|
2016-07-29 17:23:39 +00:00
|
|
|
* file 'LICENSE.md', which is part of this source code package.
|
2016-07-09 14:09:27 +00:00
|
|
|
*/
|
|
|
|
|
2016-07-09 21:05:53 +00:00
|
|
|
// Package common contains common properties used by the subpackages.
|
2016-07-09 14:09:27 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2017-01-03 15:24:54 +00:00
|
|
|
const releaseYear = 2017
|
2017-07-07 17:20:37 +00:00
|
|
|
const releaseMonth = 7
|
2017-07-25 14:38:36 +00:00
|
|
|
const releaseDay = 25
|
|
|
|
const releaseHour = 14
|
|
|
|
const releaseMin = 37
|
2016-07-09 14:09:27 +00:00
|
|
|
|
2017-03-15 13:01:20 +00:00
|
|
|
// Holds version information, when bumping this make sure to bump the released at stamp also.
|
2017-07-25 14:38:36 +00:00
|
|
|
const Version = "2.0.0"
|
2016-07-09 14:09:27 +00:00
|
|
|
|
|
|
|
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)
|