@@ -143,19 +143,18 @@ When changes are merged into the `main` branch, a new release is automatically t
143143
144144** Version Bump Rules:**
145145- ` feat: ` - New feature → ** Minor version bump** (v1.2.0 → v1.3.0)
146- - ` fix: ` - Bug fix → ** Patch version bump** (v1.2.0 → v1.2.1)
147146- ` BREAKING CHANGE: ` - Breaking changes → ** Major version bump** (v1.2.0 → v2.0.0)
148- -
149-
150- ** No Release Triggered: **
151- - ` docs :` - Documentation changes
152- - ` chore :` - Maintenance tasks (dependencies, build config, tooling)
153- - ` refactor :` - Code restructuring without behavior changes
154- - ` test :` - Test updates
155- - ` style :` - Formatting and whitespace
156- - ` ci :` - CI/CD configuration changes
157- - ` perf :` - Performance improvements
158- - ` build: ` - Dependabot commits
147+ - Patch version bump (v1.2.0 → v1.2.1)
148+ - ` fix: ` - Bug fix
149+ - ` docs: ` - Documentation changes
150+ - ` chore :` - Maintenance tasks (dependencies, build config, tooling)
151+ - ` refactor :` - Code restructuring without behavior changes
152+ - ` test :` - Test updates
153+ - ` style :` - Formatting and whitespace
154+ - ` ci :` - CI/CD configuration changes
155+ - ` perf :` - Performance improvements
156+ - ` build :` - Dependabot commits
157+ - ` no conventional commits ` - text without specifying any of above
159158
160159### Manual Release
161160
@@ -164,20 +163,18 @@ For manual releases (e.g., major version updates or hotfixes), use the GitHub Ac
164163### Commit Message Examples
165164
166165``` bash
167- # Patch release (v1.2.3 → v1.2.4)
168- git commit -m " fix: resolve upload timeout issue"
169-
170- # Minor release (v1.2.3 → v1.3.0)
171- git commit -m " feat: add retry logic for failed uploads"
172-
173166# Major release (v1.2.3 → v2.0.0)
174167git commit -m " feat: redesign upload API
175168
176169BREAKING CHANGE: Upload() signature changed to return structured error"
177170
178- # No release
171+ # Minor release (v1.2.3 → v1.3.0)
172+ git commit -m " feat: add retry logic for failed uploads"
173+
174+ # Patch release (v1.2.3 → v1.2.4)
179175git commit -m " docs: update Azure Blob Storage usage examples"
180176git commit -m " chore: upgrade dependencies"
177+ git commit -m " class x moved to another folder"
181178```
182179
183180## Notes
0 commit comments