Skip to content

Commit 6cbea1a

Browse files
committed
chore: prepare release 1.11.0
1 parent 2ad14f9 commit 6cbea1a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.11.0] - 2025-02-24
11+
12+
* Add new parameter `cache-bin` that is propagated to `Swatinem/rust-cache` as `cache-bin` (#51 by @enkhjile)
13+
* Add new parameter `cache-shared-key` that is propagated to `Swatinem/rust-cache` as `shared-key` (#52 by @skanehira)
14+
1015
## [1.10.1] - 2024-10-01
1116

1217
* Fix problem matcher for rustfmt output.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Afterward, the `components` and `target` specified via inputs are installed in a
5858
| `cache-workspaces` | Propagates the value to [`Swatinem/rust-cache`] | |
5959
| `cache-on-failure` | Propagates the value to [`Swatinem/rust-cache`] | true |
6060
| `cache-key` | Propagates the value to [`Swatinem/rust-cache`] as `key` | |
61-
| `shared-cache-key` | Propagates the value to [`Swatinem/rust-cache`] as `shared-key` | |
61+
| `cache-shared-key` | Propagates the value to [`Swatinem/rust-cache`] as `shared-key` | |
6262
| `matcher` | Enable problem matcher to surface build messages and formatting issues | true |
6363
| `rustflags` | Set the value of `RUSTFLAGS` (set to empty string to avoid overwriting existing flags) | "-D warnings" |
6464
| `override` | Setup the last installed toolchain as the default via `rustup override` | true |

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ inputs:
3838
cache-key:
3939
description: "An additional cache key that is added alongside the automatic `job`-based cache key and can be used to further differentiate jobs."
4040
required: false
41-
shared-cache-key:
41+
cache-shared-key:
4242
description: "A cache key that is used instead of the automatic `job`-based key, and is stable over multiple jobs."
4343
required: false
4444
matcher:
@@ -203,4 +203,4 @@ runs:
203203
cache-directories: ${{inputs.cache-directories}}
204204
cache-on-failure: ${{inputs.cache-on-failure}}
205205
key: ${{inputs.cache-key}}
206-
shared-key: ${{inputs.shared-cache-key}}
206+
shared-key: ${{inputs.cache-shared-key}}

0 commit comments

Comments
 (0)