github.com/wiselike/revel-cmd@v1.2.1/version.go (about)

     1  // Copyright (c) 2012-2018 The Revel Framework Authors, All rights reserved.
     2  // Revel Framework source code and usage is governed by a MIT style
     3  // license that can be found in the LICENSE file.
     4  
     5  package cmd
     6  
     7  const (
     8  	// Version current Revel version
     9  	Version = "1.1.2"
    10  
    11  	// BuildDate latest commit/release date
    12  	BuildDate = "2022-04-12"
    13  
    14  	// MinimumGoVersion minimum required Go version for Revel
    15  	MinimumGoVersion = ">= go1.17"
    16  )