This folder contains changeset files for the C# package.
A changeset is a markdown file that describes a version bump and contains the change description. When merged to main, these files are consumed by the release workflow to:
- Determine the version bump type (major, minor, patch)
- Generate changelog entries
- Create releases
Create a new markdown file in this directory with a unique name (e.g., add-new-feature.md) with the following format:
---
'Foundation.Data.Doublets.Cli': minor
---
Added new feature that does X, Y, and Z.The first line after --- should be the package name followed by the bump type:
major- Breaking changesminor- New features (backwards compatible)patch- Bug fixes (backwards compatible)
The content after the second --- is the changelog description.
If your PR has multiple logical changes, you can create multiple changeset files. They will be merged automatically during release.