ci: prerelease-type beta.0으로 변경 — 시리얼 넘버링 (master)#124
Merged
Palbahngmiyine merged 1 commit intosolapi:masterfrom Apr 8, 2026
Merged
Conversation
"beta"로 설정하면 첫 버전이 6.0.0-beta(카운터 없음)로 생성된다. "beta.0"으로 설정하면 6.0.0-beta.0부터 시작하고, 이후 bump 시 beta.1, beta.2로 시리얼하게 증가한다. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Code Review
This pull request updates the prerelease-type configuration in release-please-config-beta.json from beta to beta.0. The review feedback points out that setting the type to beta.0 may lead to redundant version numbering (e.g., beta.0.0) because the release tool automatically appends an incrementing number to the specified string.
| "release-type": "node", | ||
| "prerelease": true, | ||
| "prerelease-type": "beta", | ||
| "prerelease-type": "beta.0", |
There was a problem hiding this comment.
prerelease-type을 beta.0으로 설정하면 release-please가 버전을 생성할 때 beta.0.0, beta.0.1과 같이 숫자가 중복되어 붙는 형태가 될 수 있습니다. 일반적으로 release-please는 지정된 prerelease-type 뒤에 자동으로 증분되는 숫자를 추가합니다. 만약 beta.0, beta.1과 같은 표준적인 프리릴리즈 형식을 의도하신 것이라면, 값을 beta로 유지하는 것이 권장됩니다.
Suggested change
| "prerelease-type": "beta.0", | |
| "prerelease-type": "beta", |
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.
기능 변경사항
prerelease-type을"beta"→"beta.0"으로 변경했습니다.프로젝트 내부 변경사항
beta와 동일한 수정. master에도 동기화하여 config 일관성을 유지합니다.
Test plan
🤖 Generated with Claude Code