Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
paulormart committed Feb 29, 2024
1 parent bbe61ae commit e403ad7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.2] - 2023-02-29

## Bugfix
- Fixes issue [#39](https://github.com/turboflakes/crunch/issues/39), removes control characters from seed file, before parsing content.

## [0.12.1] - 2023-02-29

## Bugfix
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For Pool Operators to auto-compound members rewards above certain threshold.
# create `crunch-bot` directory
mkdir /crunch-bot
# download `crunch` binary latest version
wget -P /crunch-bot https://github.com/turboflakes/crunch/releases/download/v0.12.1/crunch
wget -P /crunch-bot https://github.com/turboflakes/crunch/releases/download/v0.12.2/crunch
# make `crunch` binary file executable
chmod +x /crunch-bot/crunch
```
Expand Down
4 changes: 2 additions & 2 deletions crunch-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
DIRNAME="~/crunch-bot"
FILENAME="$DIRNAME/crunch"

read -p "Enter the Crunch version that you would like to download (e.g.: 0.12.1): " INPUT_VERSION
read -p "Enter the Crunch version that you would like to download (e.g.: 0.12.2): " INPUT_VERSION
if [ "$INPUT_VERSION" = "" ]; then
INPUT_VERSION="0.12.1"
INPUT_VERSION="0.12.2"
fi

URI="https://github.com/turboflakes/crunch/releases/download/v$INPUT_VERSION/crunch"
Expand Down

0 comments on commit e403ad7

Please sign in to comment.