mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-26 13:48:55 +08:00
23 lines
590 B
Go
23 lines
590 B
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
// Package common contains common properties used by the subpackages.
|
|
package common
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const releaseYear = 2020
|
|
const releaseMonth = 1
|
|
const releaseDay = 4
|
|
const releaseHour = 19
|
|
const releaseMin = 5
|
|
|
|
// Version holds version information, when bumping this make sure to bump the released at stamp also.
|
|
const Version = "3.3.1"
|
|
|
|
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)
|