unipdf/common/version.go

23 lines
600 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
const releaseMonth = 1
const releaseDay = 10
const releaseHour = 22
const releaseMin = 42
// Version holds version information, when bumping this make sure to bump the released at stamp also.
2019-01-10 23:28:38 +00:00
const Version = "3.0.0-alpha.1"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)