This commit is contained in:
Mike Farah 2020-01-11 09:14:32 +11:00
parent 24dcb56466
commit 9361b8b3e9
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: yq name: yq
version: '3.0.0' version: '3.0.0-beta'
summary: A lightweight and portable command-line YAML processor summary: A lightweight and portable command-line YAML processor
description: | description: |
The aim of the project is to be the jq or sed of yaml files. The aim of the project is to be the jq or sed of yaml files.

View File

@ -16,7 +16,7 @@ var (
// VersionPrerelease is a pre-release marker for the version. If this is "" (empty string) // VersionPrerelease is a pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release // then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc. // such as "dev" (in development), "beta", "rc1", etc.
VersionPrerelease = "" VersionPrerelease = "beta"
) )
// ProductName is the name of the product // ProductName is the name of the product