From fb0b5552a756b5af7626c035380b765624c5b44f Mon Sep 17 00:00:00 2001 From: lukasmartinelli Date: Thu, 24 Nov 2016 19:20:47 +0100 Subject: [PATCH] Bump version to v0.3 --- README.md | 4 ++-- pipecat.go | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e9b726e..0053477 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You can download a single binary for Linux, OSX or Windows. **OSX** ```bash -wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.2/pipecat_darwin_amd64 +wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.3/pipecat_darwin_amd64 chmod +x pipecat ./pipecat --help @@ -45,7 +45,7 @@ chmod +x pipecat **Linux** ```bash -wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.2/pipecat_linux_amd64 +wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.3/pipecat_linux_amd64 chmod +x pipecat ./pipecat --help diff --git a/pipecat.go b/pipecat.go index f68330e..3fd8e3b 100644 --- a/pipecat.go +++ b/pipecat.go @@ -68,10 +68,9 @@ func publish(c *cli.Context) { false, // mandatory false, // immediate amqp.Publishing{ - ContentType: "text/plain", - Body: []byte(line), - DeliveryMode:deliveryMode, - + ContentType: "text/plain", + Body: []byte(line), + DeliveryMode: deliveryMode, }) failOnError(err, "Failed to publish a message") @@ -166,7 +165,7 @@ func main() { app := cli.NewApp() app.Name = "pipecat" app.Usage = "Connect unix pipes and message queues" - app.Version = "0.2" + app.Version = "0.3" globalFlags := []cli.Flag{ cli.StringFlag{