Skip to content

Commit

Permalink
bump version (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvhonorato authored Jun 17, 2024
1 parent 6be7105 commit b8afdcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ This tool is not meant to be used by end-users who want to run a single target,
To us it simply download the latest binary from the [releases page](https://github.com/haddocking/haddock-runner/releases):

```bash
$ wget https://github.com/haddocking/haddock-runner/releases/download/v1.8.0/haddock-runner_1.8.0_linux_386.tar.gz
$ tar -zxvf haddock-runner_1.8.0_linux_386.tar.gz
$ wget https://github.com/haddocking/haddock-runner/releases/download/v1.8.1/haddock-runner_1.8.1_linux_386.tar.gz
$ tar -zxvf haddock-runner_1.8.1_linux_386.tar.gz
$ ./haddock-runner -version
haddock-runner version v1.8.0
haddock-runner version v1.8.1
```

Alternatively, you can build the latest version from source (you probably don't need to do that), make sure [go](https://go.dev/doc/install) is installed and run the following commands:
Expand All @@ -28,5 +28,5 @@ $ git clone https://github.com/haddocking/haddock-runner.git
$ cd haddock-runner
$ go build -o haddock-runner
$ ./haddock-runner -version
haddock-runner version v1.8.0
haddock-runner version v1.8.1
```
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/golang/glog"
)

const version = "v1.8.0"
const version = "v1.8.1"

func init() {
var versionPrint bool
Expand Down

0 comments on commit b8afdcf

Please sign in to comment.