From 49a39f911c85c6ec0c9aadd5a426ae2761afaba2 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Fri, 26 Jul 2024 10:43:14 +0200 Subject: [PATCH] v2.0.0 --- CHANGELOG.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e69f6d..955845e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. 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](https://github.com/hynek/setup-cached-uv/compare/v1.3.0...main) +## [2.0.0](https://github.com/hynek/setup-cached-uv/compare/v1.3.0...v2.0.0) - 2024-07-26 ### Added diff --git a/README.md b/README.md index f0d714b..ce0ffe7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ jobs: tests: runs-on: ubuntu-latest # or macOS, or Windows steps: - - uses: hynek/setup-cached-uv@v1 + - uses: hynek/setup-cached-uv@v2 - run: uv ... ``` @@ -80,7 +80,7 @@ For example, if you have dependencies that don’t provide prebuilt PyPy wheels, ```yaml # ... - - uses: hynek/setup-cached-uv@v1 + - uses: hynek/setup-cached-uv@v2 with: if-use-cache: ${{ startsWith(matrix.python-version, 'pypy') }} # ...