unipdf/common/version.go

23 lines
599 B
Go
Raw Normal View History

/*
* 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 21:05:53 +00:00
// Package common contains common properties used by the subpackages.
package common
import (
"time"
)
2019-01-10 23:28:38 +00:00
const releaseYear = 2019
2019-02-07 12:17:54 +00:00
const releaseMonth = 2
const releaseDay = 7
const releaseHour = 12
const releaseMin = 15
// Version holds version information, when bumping this make sure to bump the released at stamp also.
2019-02-07 12:17:54 +00:00
const Version = "3.0.0-alpha.2"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)