Determine and apply the correct semantic version bump by analyzing changes since the last release. This skill reads version files, classifies changes as breaking (major), feature (minor), or fix (patch), computes the new version number, and updates the appropriate files. Follows SemVer 2.0.0 specification.
Locate and read the version file in the project root.
Parse the current version into major.minor.patch components. If the version contains a pre-release suffix (e.g., 1.2.0-beta.1), note it separately.
변경 분석을 기반으로 올바른 버전 범프를 결정하려면 의미 체계 버전 관리(SemVer 2.0.0)를 적용하세요. 주요/부/패치 분류, 시험판 식별자, 빌드 메타데이터 및 주요 변경 사항 감지를 다룹니다. 새 릴리스를 준비할 때 태그를 지정하기 전에 변경 사항을 병합한 후, 변경 사항이 주요 변경 사항에 해당하는지 평가하고, 사전 릴리스 식별자를 추가하거나, 어떤 버전 범프가 적절한지에 대한 의견 차이를 해결한 후 올바른 버전 번호를 결정하기 위해 사용할 수 있습니다. 출처: pjt222/development-guides.