From 8aa465fac6a33f82ead530b89f9b13d33426d6d6 Mon Sep 17 00:00:00 2001 From: Aaron Choo Date: Tue, 26 Dec 2023 14:18:05 +0800 Subject: [PATCH] chore: bump version --- CONTRIBUTING.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d431a89a..7797f63f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -88,6 +88,16 @@ pnpm build ### Publishing +To bump the package version prior to publishing, run: + +```sh +# To bump the patch number (most publishes should use this) +pnpm version patch --no-git-tag-version + +# To bump the prerelease number (if and only if a RC version is required) +pnpm version prerelease --no-git-tag-version --preid=rc +``` + To publish the package to NPM, run: ```sh diff --git a/package.json b/package.json index c6169e35..d27457fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmes", - "version": "0.0.46", + "version": "0.0.47-rc.0", "private": false, "packageManager": "pnpm@8.3.0", "sideEffects": false,