unipdf/common/version.go

23 lines
592 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-06-02 16:21:07 +00:00
const releaseMonth = 6
2019-06-27 20:13:22 +00:00
const releaseDay = 27
const releaseHour = 20
2019-06-11 22:08:32 +00:00
const releaseMin = 10
// Version holds version information, when bumping this make sure to bump the released at stamp also.
2019-06-27 20:13:22 +00:00
const Version = "3.0.3"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)