unipdf/common/version.go

24 lines
639 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"
)
const releaseYear = 2016
const releaseMonth = 7
const releaseDay = 9
const releaseHour = 12
const releaseMin = 00
// Holds version information, when bumping this make sure to bump the released
// at stamp also. This is for license information to make sure license
2017-01-03 10:53:15 +00:00
const Version = "1.1.0"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)