functions: 0.3.7 release [skip ci]

This commit is contained in:
Travis Reeder
2017-05-27 10:10:21 -07:00
parent d3b713cf16
commit 37b53a5820
4 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
package version
// Version of Functions
var Version = "0.3.6"
var Version = "0.3.7"

View File

@@ -52,7 +52,6 @@
ignored = ["github.com/treeder/functions", "github.com/treeder/functions/api/version"]
[[dependencies]]
branch = "master"
name = "github.com/aws/aws-sdk-go"
version = "^1.8.23"

View File

@@ -3,7 +3,7 @@ set -e
# Install script to install fn
release="0.3.6"
release="0.3.7"
command_exists() {
command -v "$@" > /dev/null 2>&1

View File

@@ -14,7 +14,7 @@ perl -i -pe 's/\d+\.\d+\.\K(\d+)/$1+1/e' $version_file
version=$(grep -m1 -Eo "[0-9]+\.[0-9]+\.[0-9]+" $version_file)
echo "Version: $version"
# make docker-build
make docker-build
sed "s/release=.*/release=\"$version\"/g" fn/install.sh > fn/install.sh.tmp
mv fn/install.sh.tmp fn/install.sh