Skip to content

Commit

Permalink
Update version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xthexder committed May 5, 2015
1 parent e572df9 commit a1f5347
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.1.0 (Unreleased)
# 1.1.0

* Remove /toxics endpoint in favour of /proxies
* Add bandwidth toxic
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.1.0
5 changes: 3 additions & 2 deletions api.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ func (server *server) Listen(host string, port string) {
http.Handle("/", r)

logrus.WithFields(logrus.Fields{
"host": host,
"port": port,
"host": host,
"port": port,
"version": Version,
}).Info("API HTTP server starting")

err := http.ListenAndServe(net.JoinHostPort(host, port), nil)
Expand Down
2 changes: 1 addition & 1 deletion toxiproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"
)

var Version = "1.0.3"
var Version = "1.1.0"

var host string
var port string
Expand Down

0 comments on commit a1f5347

Please sign in to comment.