mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
17 lines
439 B
Go
17 lines
439 B
Go
// Copyright (c) 2012-2018 The Revel Framework Authors, All rights reserved.
|
|
// Revel Framework source code and usage is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cmd
|
|
|
|
const (
|
|
// Version current Revel version.
|
|
Version = "1.1.0-dev"
|
|
|
|
// BuildDate latest commit/release date.
|
|
BuildDate = "2020-07-11"
|
|
|
|
// MinimumGoVersion minimum required Go version for Revel.
|
|
MinimumGoVersion = ">= go1.12"
|
|
)
|