From bc14556e403457e07976de512242d27007fb19b0 Mon Sep 17 00:00:00 2001 From: suzuki3jp Date: Mon, 20 Jan 2025 08:27:14 +0900 Subject: [PATCH 1/2] docs: Add link to Use Cases section in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1e879cb..6990076 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ - [Highlights](#highlights) - [Quick Start](#quick-start) - [Introduction](/docs/01-introduction.md) +- [Use Cases](/docs/02-usecases.md) - [Reference](/docs/api/youtubes.js.md) - [Supported endpoints](#supported-endpoints) - [License](#license) From 47f2b3e4358f289abc8039b0c9aacc4323176f0f Mon Sep 17 00:00:00 2001 From: suzuki3jp Date: Mon, 20 Jan 2025 11:51:28 +0900 Subject: [PATCH 2/2] chore: Update release rules in .releaserc.json for docs and breaking changes --- .releaserc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.releaserc.json b/.releaserc.json index f7dd06f..2c32e61 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -1,7 +1,15 @@ { "branches": ["main"], "plugins": [ - "@semantic-release/commit-analyzer", + [ + "@semantic-release/commit-analyzer", + { + "releaseRules": [ + { "type": "docs", "release": "patch" }, + { "breaking": true, "release": "minor" } + ] + } + ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/github",