ci(release-plz): version_group 으로 통합 버전 정합 (0.10.0 Release PR 차단 해소)#93
Merged
Conversation
0.10.0 Release PR 생성이 cargo resolve 에러로 실패했다 (run 28504169874): `failed to select a version for the requirement hwpforge-foundation = ^0.9.0, candidate 0.10.0`. 원인은 모든 crate 가 version.workspace=true(통합 버전)인데 release-plz 는 crate 별 독립 버전을 계산 → core(feat!)만 0.10.0 으로 올리면 통합 버전이 올라가 foundation 등도 0.10.0 이 되지만, 하드코딩된 inter-crate `version = "0.9.0"` 요구가 안 고쳐져 충돌. 수정: 11개 crate 전부 `version_group = "unified"` 로 묶어 release-plz 가 한 버전으로 함께 bump + inter-crate 버전 요구를 일괄 재작성하게 함 (공식 config, release-plz.dev). Cargo.toml/버전/태그 불변. 검증은 머지 후 release-plz 재실행으로 확인.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
문제
#91 머지 후 release-plz 의
release-pr스텝이 실패 (run 28504169874):모든 crate 가
version.workspace = true(통합 버전)인데 release-plz 는 crate 별 독립 버전을 계산합니다. core(feat!)를 0.10.0 으로 올리면 통합 워크스페이스 버전이 올라가 foundation 등도 0.10.0 이 되지만, 하드코딩된 inter-crateversion = "0.9.0"요구가 재작성되지 않아 cargo resolve 가 실패했습니다.수정
release-plz.toml: 11개 crate 전부에version_group = "unified"추가검증