From 4d56a80ac35c46784c66e516be44681fa5da06c1 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 9 Aug 2021 23:36:11 +0200 Subject: [PATCH] build: use next tag again --- README.md | 6 +++++- scripts/release.sh | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 327aa4e289..9bad6f8337 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,11 @@ yarn add pinia@next npm install pinia@next ``` -Note: If you are using Vue `^3.2.0` or `@vue/composition-api` `^1.1.0` (with Vue 2), give `pinia@beta` a try! [Check this issue](https://github.com/posva/pinia/issues/592) for more information and to ask questions. +If you are using Vue 2, make sure to install `@vue/composition-api` version `1.1.0` (or greater): + +```bash +npm install pinia@next @vue/composition-api@next +``` ## Usage diff --git a/scripts/release.sh b/scripts/release.sh index 1376b31fdd..8c8394c951 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -33,7 +33,7 @@ then git tag "v$VERSION" # commit - yarn publish --tag beta --new-version "$VERSION" --no-commit-hooks --no-git-tag-version + yarn publish --tag next --new-version "$VERSION" --no-commit-hooks --no-git-tag-version # publish git push origin refs/tags/v$VERSION