diff --git a/RELEASES.md b/RELEASES.md index 45d5b7c..dd029a1 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -49,3 +49,6 @@ ### 3.1.0-beta.3 - Bug fixes for bsdtar fallback if gnutar not available and gzip fallback if cache saved using old cache action on windows. + +### 3.2.0-beta.1 +- Added two new actions - [restore](restore/action.yml) and [save](save/action.yml) for granular control on cache. diff --git a/package-lock.json b/package-lock.json index d329382..9b0b520 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cache", - "version": "3.1.0-beta.3", + "version": "3.2.0-beta.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cache", - "version": "3.1.0-beta.3", + "version": "3.2.0-beta.1", "license": "MIT", "dependencies": { "@actions/cache": "3.1.0-beta.3", diff --git a/package.json b/package.json index 878f55e..d6d2700 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cache", - "version": "3.1.0-beta.3", + "version": "3.2.0-beta.1", "private": true, "description": "Cache dependencies and build outputs", "main": "dist/restore/index.js",