functions: 0.3.1 release [skip ci]

This commit is contained in:
Travis Reeder
2017-05-15 14:08:53 -07:00
parent 0c6ca08a2f
commit aa046ba5fc
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ docker-dep:
docker-build:
docker run --rm -v ${CURDIR}:/go/src/github.com/treeder/functions -w /go/src/github.com/treeder/functions iron/go:dev go build -o functions-alpine
docker build -t treeder/functions:latest .
docker build --build-arg HTTP_PROXY -t treeder/functions:latest .
docker-run: docker-build
docker run --rm --privileged -it -e LOG_LEVEL=debug -e "DB_URL=bolt:///app/data/bolt.db" -v ${CURDIR}/data:/app/data -p 8080:8080 treeder/functions

View File

@@ -1,4 +1,4 @@
package version
// Version of IronFunctions
var Version = "0.2.62"
var Version = "0.3.1"

View File

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