File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -36,17 +36,16 @@ method = "git"
3636match = [" v*" ] # Only recognize tags starting with 'v' (e.g., v0.1.0)
3737
3838[tool .versioningit .next-version ]
39- # 태그 이후 커밋이 발생하면 무조건 Minor 버전을 올림 (0.1.0 -> 0.2.0)
39+ # If there's commit after release, increase minor version (0.1.0 -> 0.2.0)
4040method = " minor"
4141
4242[tool .versioningit .format ]
43- # 1. 정식 태그가 찍힌 경우: 0.1.0
44- # 2. 태그 이후 커밋이 있는 경우: 0.2.0.dev260112 (다음버전 + .dev + 날짜)
43+ # In case there's a new commit after official tag, mark 'dev' + date
4544distance = " {next_version}.dev{committer_date:%y%m%d}"
46- # 3. 로컬에서 수정 중인 파일이 있는 경우 (+ dirty 추가)
45+ # In case there's local change, mark ' dirty'
4746dirty = " {next_version}.dev{committer_date:%y%m%d}+dirty"
4847distance-dirty = " {next_version}.dev{committer_date:%y%m%d}+dirty"
4948
5049[tool .versioningit .write ]
51- # 빌드 시 버전을 기록할 파일 (tico/__init__.py에서 참조 가능)
50+ # Version will be written on this file, created during build process.
5251file = " tico/_version.py"
You can’t perform that action at this time.
0 commit comments