feat: ver.tomlをpyproject.tomlに統合#7
Merged
Merged
Conversation
fa1a0ec to
ef6539b
Compare
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.
概要
ver の設定管理を ver.toml から pyproject.toml に移行し、init / update / check の挙動とテストを合わせて整理しました。
あわせて、ver check でハッシュ不整合が発生した場合の案内メッセージを見直し、次のアクションが分かるように改善しています。
変更内容
背景
従来は ver.toml にバージョン管理情報を持っていましたが、Python プロジェクトの標準的な設定ファイルである pyproject.toml に集約することで、設定の見通しと運用性を改善するためです。
また、check 失敗時に利用者が何をすべきか分かりづらかったため、"ver update" を明示するメッセージに変更しました。
確認事項