Skip to content

Commit

Permalink
Bump version to v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmartinelli committed Nov 24, 2016
1 parent 81b5937 commit fb0b555
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
9 changes: 4 additions & 5 deletions pipecat.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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{
Expand Down

0 comments on commit fb0b555

Please sign in to comment.