diff --git a/CHANGELOG.md b/CHANGELOG.md index a5316a3..ec64775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master +## 0.5.0 (2023-02-28) + - Add `--debug` option to print debug information. ([@palkan][]) - Fix URL normalization (do not downcase, 'cause it can break query parameters). ([@palkan][]) diff --git a/README.md b/README.md index 270c454..f0a0a7e 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,17 @@ It's a standalone binary which can be used: ## Installation -Currently only MacOS (x86\_64) and Linux (x86\_64) are supported. +Currently only MacOS (x86\_64 and ARM) and Linux (x86\_64) are supported. **PRs are welcomed** for other platforms support. ### Precompiled binaries -See GitHub [releases](https://github.com/palkan/acli/releases). +See GitHub [releases](https://github.com/palkan/acli/releases). You can download the latest release by using cURL: + +```sh +curl -L https://github.com/palkan/acli/releases/latest/download/acli-`uname -s`-`uname -m` > /usr/local/bin/acli +chmod +x /usr/local/bin/acli +``` You can also find edge (master) builds in [Actions](https://github.com/palkan/acli/actions). diff --git a/mrblib/acli/version.rb b/mrblib/acli/version.rb index 04122f4..9de07bf 100644 --- a/mrblib/acli/version.rb +++ b/mrblib/acli/version.rb @@ -1,3 +1,3 @@ module Acli - VERSION = "0.4.1" + VERSION = "0.5.0" end