diff --git a/api/version/version.go b/api/version/version.go index c6cfc50d5..95cc705a8 100644 --- a/api/version/version.go +++ b/api/version/version.go @@ -1,4 +1,4 @@ package version // Version of Functions -var Version = "0.3.6" +var Version = "0.3.7" diff --git a/fn/Gopkg.toml b/fn/Gopkg.toml index 0a5367f05..ba6c8c910 100644 --- a/fn/Gopkg.toml +++ b/fn/Gopkg.toml @@ -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" diff --git a/fn/install.sh b/fn/install.sh index fad116926..9003f1f25 100644 --- a/fn/install.sh +++ b/fn/install.sh @@ -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 diff --git a/release.sh b/release.sh index 5ecf6614c..3088055b7 100755 --- a/release.sh +++ b/release.sh @@ -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