name: biome-plugins-changesets description: Changesets and version bump guidelines for @aliou/biome-plugins. Use when creating changesets or determining version bump type for releases.
Changesets and Version Bumps
When making changes that will be published to npm.
Creating changesets
Manually create changeset files in .changeset/ with this format:
---
"@aliou/biome-plugins": <patch|minor|major>
---
Description of the change
Version bump guidelines
- patch (0.0.x): Bug fixes, documentation updates, test improvements, internal refactoring
- minor (0.x.0): New features, new plugins, backward-compatible additions
- major (x.0.0): Breaking changes, removed plugins, changed plugin behavior that affects existing users
Examples
- Adding a new plugin → minor
- Fixing a bug in existing plugin → patch
- Updating documentation → patch
- Removing a plugin → major
- Changing plugin diagnostic behavior → major
- Adding test coverage → patch
Workflow
- Make changes
- Create changeset file in
.changeset/ - Commit changes and changeset together
- Push to main
- GitHub Actions creates/updates release PR
- Merge release PR to publish to npm