From e226f24209f47677da7b215bab44f6351a2c043b Mon Sep 17 00:00:00 2001 From: ok-nick Date: Wed, 20 Sep 2023 13:42:58 -0400 Subject: [PATCH] docs: prepare `0.4.2` --- CHANGELOG.md | 5 ++++- README.md | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3cc80f..e9c2eb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.4.2] - 2023-09-20 ## Changed - Disable caching by default #15 @@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Everything -[Unreleased]: https://github.com/ok-nick/setup-aftman/compare/v0.4.1...HEAD +[Unreleased]: https://github.com/ok-nick/setup-aftman/compare/v0.4.2...HEAD +[0.4.2]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.2 [0.4.1]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.1 [0.4.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.4.0 [0.3.0]: https://github.com/ok-nick/setup-aftman/releases/tag/v0.3.0 diff --git a/README.md b/README.md index fbeab94..bd6ae71 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ GitHub action to install and run [aftman](https://github.com/LPGhatguy/aftman); Use the latest released version of `aftman` with default parameters: ```yaml steps: -- uses: ok-nick/setup-aftman@v0.4.1 +- uses: ok-nick/setup-aftman@v0.4.2 ``` For a list of default parameter values, [check here](https://github.com/ok-nick/setup-aftman/blob/main/action.yml#L5-L20). @@ -20,11 +20,11 @@ For a list of default parameter values, [check here](https://github.com/ok-nick/ For more advanced cases, use the parameters below. ```yaml steps: -- uses: ok-nick/setup-aftman@v0.4.1 +- uses: ok-nick/setup-aftman@v0.4.2 with: version: v1.0.0 # name of git tag in aftman (uses latest by default) path: some_dir/my_project # path to project dir containing `aftman.toml` (uses current dir by default) - cache: "true" # whether to enable binary caching between runs (true by default) + cache: "false" # whether to enable binary caching between runs (false by default) token: ${{ github.token }} # GitHub token to bypass rate limit (passed by default) ```