Skip to content

Commit

Permalink
Fixed version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
straubt1 committed Jun 21, 2021
1 parent c5a9f43 commit 87c254a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ Binaries are created as part of release, check out the [Release Page](https://gi

**MacOs Installation**
```sh
version="0.0.1-dev"
version="0.0.2-dev"
curl -L -o tfx "https://github.com/straubt1/tfx/releases/download/${version}/tfx_darwin_amd64"
chmod +x tfx
```

**Linux Installation**
```sh
version="0.0.1-dev"
version="0.0.2-dev"
curl -L -o tfx "https://github.com/straubt1/tfx/releases/download/${version}/tfx_linux_amd64"
chmod +x tfx
```

**Windows Installation**
```sh
version="0.0.1-dev"
version="0.0.2-dev"
curl -L -o tfx.exe "https://github.com/straubt1/tfx/releases/download/${version}/tfx_windows_amd64"
```

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package version

var (
Version = "0.0.1"
Version = "0.0.2"
Prerelease = "dev"
Build = ""
Date = ""
Expand Down

0 comments on commit 87c254a

Please sign in to comment.