functions: 0.0.2 release

This commit is contained in:
Travis Reeder
2016-08-10 15:04:36 -07:00
parent f3d2aa09ef
commit 5e892034e7
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ import (
)
// Version of IronFunctions
var Version = "0.0.1"
var Version = "0.0.2"
func handleVersion(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"version": Version})

View File

@@ -3,7 +3,7 @@ set -ex
user="iron"
service="functions"
version_file="api/version.go"
version_file="api/server/version.go"
tag="latest"
if [ -z $(grep -m1 -Eo "[0-9]+\.[0-9]+\.[0-9]+" $version_file) ]; then