unioffice/common/version.go
Alfred Hall 2e7943e809 New license based on the unidoc model (#294)
* Style fixes.  Fixes for tests. Should not fail with version updates in the future.
2019-06-09 11:56:06 +00:00

23 lines
591 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 = 2019
const releaseMonth = 6
const releaseDay = 6
const releaseHour = 11
const releaseMin = 30
// Version holds version information, when bumping this make sure to bump the released at stamp also.
const Version = "1.2.0"
var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)