Skip to content

Commit ee398d7

Browse files
committed
Bump version to v2.3.1
1 parent 22eeca5 commit ee398d7

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ curl -fsSL https://raw.githubusercontent.com/CommonsHub/chb/main/install.sh | ba
1717
Quick example for Linux `amd64`:
1818

1919
```bash
20-
VERSION=v2.3.0
20+
VERSION=v2.3.1
2121
curl -L -o /tmp/chb.tar.gz "https://github.com/CommonsHub/chb/releases/download/${VERSION}/chb_${VERSION#v}_linux_amd64.tar.gz"
2222
tar -xzf /tmp/chb.tar.gz -C /tmp
2323
install /tmp/chb_${VERSION#v}_linux_amd64 /usr/local/bin/chb

docs/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Pick the asset that matches your CPU:
2020
Example for Linux `amd64`:
2121

2222
```bash
23-
VERSION=v2.3.0
23+
VERSION=v2.3.1
2424
ARCH=amd64
2525
curl -L -o /tmp/chb.tar.gz "https://github.com/CommonsHub/chb/releases/download/${VERSION}/chb_${VERSION#v}_linux_${ARCH}.tar.gz"
2626
tar -xzf /tmp/chb.tar.gz -C /tmp
@@ -31,13 +31,13 @@ chb --version
3131
Or with the installer script pinned to a specific release:
3232

3333
```bash
34-
curl -fsSL https://raw.githubusercontent.com/CommonsHub/chb/main/install.sh | VERSION=v2.3.0 bash
34+
curl -fsSL https://raw.githubusercontent.com/CommonsHub/chb/main/install.sh | VERSION=v2.3.1 bash
3535
```
3636

3737
Example for Linux `arm64`:
3838

3939
```bash
40-
VERSION=v2.3.0
40+
VERSION=v2.3.1
4141
ARCH=arm64
4242
curl -L -o /tmp/chb.tar.gz "https://github.com/CommonsHub/chb/releases/download/${VERSION}/chb_${VERSION#v}_linux_${ARCH}.tar.gz"
4343
tar -xzf /tmp/chb.tar.gz -C /tmp
@@ -50,7 +50,7 @@ chb --version
5050
Each release also publishes `checksums.txt`.
5151

5252
```bash
53-
VERSION=v2.3.0
53+
VERSION=v2.3.1
5454
curl -L -O "https://github.com/CommonsHub/chb/releases/download/${VERSION}/checksums.txt"
5555
sha256sum -c checksums.txt --ignore-missing
5656
```

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/CommonsHub/chb/cmd"
99
)
1010

11-
const VERSION = "2.3.0"
11+
const VERSION = "2.3.1"
1212

1313
func main() {
1414
cmd.LoadEnvFromConfig()

0 commit comments

Comments
 (0)