@@ -163,24 +163,24 @@ To contribute to the project, start with our [Contributing Guide](CONTRIBUTING.m
163163< details>
164164< summary> Creating a Pull Request< /summary>
165165
166- 1. Before creating a PR, generate a changelog entry using [Changie](https://changie.dev/) :
166+ 1. Before creating a PR, generate a changeset entry:
167167 ` ` ` bash
168- npm run changie new
168+ npm run changeset
169169 ` ` `
170170 This will prompt you for:
171- - Kind of change (Added, Changed, Deprecated, Removed, Fixed, Security )
172- - ` Added ` → triggers minor version bump (1.0.0 → 1.1 .0)
173- - ` Changed ` , ` Deprecated ` , ` Removed ` , ` Fixed ` , ` Security ` → triggers patch version bump (1.0.0 → 1.0.1 )
174- - Breaking changes → triggers major version bump (1.0.0 → 2 .0.0 )
171+ - Type of change (major, minor, patch )
172+ - ` major ` → breaking changes (1.0.0 → 2.0 .0)
173+ - ` minor ` → new features (1.0.0 → 1.1.0 )
174+ - ` patch ` → bug fixes (1.0.0 → 1 .0.1 )
175175 - Description of your changes
176- - Issue number (if applicable)
177176
178- 2. Commit your changes and the generated ` .changes ` file
177+ 2. Commit your changes and the generated ` .changeset ` file
179178
1801793. Push your branch and create a PR on GitHub. Our CI will:
181180 - Run tests and checks
182- - When merged to main, automatically batch changelog entries
183- - Create a version PR with the updated CHANGELOG.md
181+ - Changesetbot will create a comment showing the version impact
182+ - When merged to main, changesetbot will create a Version Packages PR
183+ - When the Version Packages PR is merged, a new release will be published
184184
185185< /details>
186186
0 commit comments