Bumped version numbers. (#291)

This commit is contained in:
Travis Reeder
2016-11-15 07:14:02 -08:00
committed by C Cirello
parent 8c320a380a
commit d4cdff9174
3 changed files with 4 additions and 8 deletions

View File

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

View File

@@ -1,11 +1,7 @@
#!/bin/sh #!/bin/sh
set -e set -e
#
# This script is meant for quick & easy install via: # Install script to install fnctl
# 'curl -sSL https://fn.iron.io/install | sh'
# or:
# 'wget -qO- https://fn.iron.io/install | sh'
#
release='0.1.0' release='0.1.0'

View File

@@ -12,7 +12,7 @@ import (
func main() { func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "fnctl" app.Name = "fnctl"
app.Version = "0.0.1" app.Version = "0.1.0"
app.Authors = []cli.Author{{Name: "iron.io"}} app.Authors = []cli.Author{{Name: "iron.io"}}
app.Usage = "IronFunctions command line tools" app.Usage = "IronFunctions command line tools"
app.UsageText = `Check the manual at https://github.com/iron-io/functions/blob/master/fnctl/README.md app.UsageText = `Check the manual at https://github.com/iron-io/functions/blob/master/fnctl/README.md