بنقرة واحدة
version-bump
Bump version using CalVer (YYYY.MM.DD) and add a changelog entry
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Bump version using CalVer (YYYY.MM.DD) and add a changelog entry
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | version-bump |
| description | Bump version using CalVer (YYYY.MM.DD) and add a changelog entry |
YYYY.MM.DD or YYYY.MM.DD.MICRO for multiple releases on the same day.
currentDate field in CLAUDE.md)package.json (the version field).MICRO (starting at .1, incrementing if already has micro)YYYY.MM.DD (no micro)git diff --stat)git log)changelog.json to avoid duplicating already-recorded changespackage.json → "version": "NEW_VERSION"wxt.config.ts → version: 'NEW_VERSION'changelog.json → prepend new entry to the arraybun run changelog:gen to regenerate changelog files"version": "YYYY.MM.DD"
version: 'YYYY.MM.DD',
Prepend a new entry to the beginning of the array. The changes array supports
mixing the content block types below in any order.
{
"version": "YYYY.MM.DD",
"date": "YYYY-MM-DD",
"changes": [
/* content blocks */
]
}
Heading — section title to group related changes:
{ "type": "heading", "content": "Permission Preset Improvements" }
Paragraph — a single descriptive sentence or short paragraph:
{ "type": "paragraph", "content": "Theme data is now fetched at runtime." }
List — bullet points for multiple related changes:
{ "type": "list", "content": ["Added X feature.", "Improved Y behavior."] }
Image — screenshot or visual with alt text:
{ "type": "image", "content": "https://bucket.alfred.uptek.com/screenshot.png", "alt": "New feature screenshot" }
Video — demo video:
{ "type": "video", "content": "https://bucket.alfred.uptek.com/demo.mp4" }
heading + paragraphheading + listheading + paragraph + video or imageheading + content for each topicdate field in changelog.json uses YYYY-MM-DD (hyphens), the version field uses YYYY.MM.DD (dots)