cetec-design-system 0.0.47-0 โ†’ 0.0.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +23 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -156,7 +156,12 @@ Packages are published from the repo root with `dist` included in the published
156
156
 
157
157
  ### Contributing
158
158
 
159
- - **Release Labels**: PRs must have a release label (major, minor, patch, or release) to trigger a release
159
+ - **Workflow trigger**: Every push to `main` runs the release workflow.
160
+ - **Publishing behavior**: A merged change that resolves to a releasable bump publishes a prerelease by default. Add the `release` label to graduate that merge to a stable `latest` release.
161
+ - **Version bump labels**: Use `major`, `minor`, or `patch` to control the semver bump.
162
+ - **Default bump**: If the merged PR has no Auto semver label, Auto defaults the head change to `patch`.
163
+ - **No-release labels**: `internal`, `documentation`, `tests`, and `dependencies` do not publish on their own.
164
+ - **Skip label**: Use `skip-release` to prevent publishing.
160
165
  - **Changelog**: Auto-generated based on PR labels and titles
161
166
  - **PR Titles**: Must follow our defined format for Auto release automation:
162
167
 
@@ -197,12 +202,23 @@ Packages are published from the repo root with `dist` included in the published
197
202
 
198
203
  ### Release Labels
199
204
 
200
- - `major` - Breaking changes (๐Ÿ’ฅ Breaking Change)
201
- - `minor` - New features (๐Ÿš€ Enhancement)
202
- - `patch` - Bug fixes (๐Ÿ› Bug Fix)
203
- - `skip-release` - No version bump
204
- - `internal` - Internal changes (๐Ÿ  Internal)
205
- - `documentation` - Documentation updates (๐Ÿ“ Documentation)
205
+ - `major` - Major version bump (๐Ÿ’ฅ Breaking Change)
206
+ - `minor` - Minor version bump (๐Ÿš€ Enhancement)
207
+ - `patch` - Patch version bump (๐Ÿ› Bug Fix)
208
+ - `release` - Graduate the publish from prerelease to stable `latest`
209
+ - `skip-release` - Do not publish a release
210
+ - `internal` - Internal changes only (๐Ÿ  Internal)
211
+ - `documentation` - Documentation updates only (๐Ÿ“ Documentation)
212
+ - `tests` - Test-only changes (๐Ÿงช Tests)
213
+ - `dependencies` - Dependency updates only (๐Ÿ”ฉ Dependency Updates)
206
214
  - `performance` - Performance improvements (๐ŸŽ Performance)
207
215
 
216
+ Examples:
217
+
218
+ - `minor` => prerelease minor
219
+ - `minor` + `release` => stable minor release
220
+ - no Auto semver label => prerelease patch
221
+ - `documentation` only => no publish
222
+ - `skip-release` => no publish
223
+
208
224
  See `.autorc` for the complete configuration.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cetec-design-system",
3
- "version": "0.0.47-0",
3
+ "version": "0.0.47",
4
4
  "description": "Cetec-ERP Design System",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",