Skip to content

Commit df03ec8

Browse files
committed
Use changesets
1 parent c2eec68 commit df03ec8

File tree

8 files changed

+850
-30
lines changed

8 files changed

+850
-30
lines changed

.changes/header.tpl.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/.gitkeep

Whitespace-only changes.

.changes/unreleased/Added-20250129-010730.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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

180179
3. 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

Comments
 (0)