unipdf/common/version.go

23 lines
591 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"
)
2020-01-04 19:06:38 +00:00
const releaseYear = 2020
2020-04-07 00:07:24 +00:00
const releaseMonth = 4
2020-04-23 01:36:32 +00:00
const releaseDay = 23
const releaseHour = 1
const releaseMin = 30
// Version holds version information, when bumping this make sure to bump the released at stamp also.
2020-04-23 01:36:32 +00:00
const Version = "3.6.2"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)