Skip to content

Commit

Permalink
Version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna committed Apr 1, 2021
1 parent e6f274c commit 113a189
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ a tiny cli for syncing a directory with a girder instance

## mac
```
sudo curl -sL -o /usr/local/bin/rivet https://github.com/danlamanna/rivet/releases/download/v0.0.4/rivet-0.0.4-darwin-amd64
sudo curl -sL -o /usr/local/bin/rivet https://github.com/danlamanna/rivet/releases/download/v0.0.5/rivet-0.0.5-darwin-amd64
sudo chmod +x /usr/local/bin/rivet
```

## linux
```
sudo curl -sL -o /usr/local/bin/rivet https://github.com/danlamanna/rivet/releases/download/v0.0.4/rivet-0.0.4-linux-amd64
sudo curl -sL -o /usr/local/bin/rivet https://github.com/danlamanna/rivet/releases/download/v0.0.5/rivet-0.0.5-linux-amd64
sudo chmod +x /usr/local/bin/rivet
```

Expand Down
2 changes: 1 addition & 1 deletion make-release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=0.0.4
VERSION=0.0.5
GIT_VERSION=$(git describe --always --long --dirty)

GOOS=darwin GOARCH=amd64 go build -ldflags="-X main.version=$GIT_VERSION" -gcflags "all=-trimpath=/Users/dan/go" -o rivet-$VERSION-darwin-amd64
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/hashicorp/go-version"
)

const Version = "0.0.4"
const Version = "0.0.5"

var BuildDate = ""
var GitCommit = ""
Expand Down

0 comments on commit 113a189

Please sign in to comment.