From 273d3782a284e7c89ff9dc8b797b39219b173257 Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Fri, 18 Oct 2024 12:35:52 -0400 Subject: [PATCH] Use 0.4.x for versioning examples (#128) I figured having the syntax examples with the latest minor semver would be more convenient for copy pasting. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b51ea0d..3be400c 100644 --- a/README.md +++ b/README.md @@ -62,14 +62,14 @@ to install the latest version that satisfies the range. - name: Install a semver range of uv uses: astral-sh/setup-uv@v3 with: - version: ">=0.3.0" + version: ">=0.4.0" ``` ```yaml - name: Pinning a minor version of uv uses: astral-sh/setup-uv@v3 with: - version: "0.3.x" + version: "0.4.x" ``` ### Validate checksum