github.com/unidoc/unidoc@v2.2.0+incompatible/common/version.go (about)

     1  /*
     2   * This file is subject to the terms and conditions defined in
     3   * file 'LICENSE.md', which is part of this source code package.
     4   */
     5  
     6  // Package common contains common properties used by the subpackages.
     7  package common
     8  
     9  import (
    10  	"time"
    11  )
    12  
    13  const releaseYear = 2018
    14  const releaseMonth = 11
    15  const releaseDay = 17
    16  const releaseHour = 11
    17  const releaseMin = 30
    18  
    19  // Holds version information, when bumping this make sure to bump the released at stamp also.
    20  const Version = "2.2.0"
    21  
    22  var ReleasedAt = time.Date(releaseYear, releaseMonth, releaseDay, releaseHour, releaseMin, 0, 0, time.UTC)