| 24 | |
| 25 | |
| 26 | class BumpType(Enum): |
| 27 | MAJOR = "major" |
| 28 | MINOR = "minor" |
| 29 | PATCH = "patch" |
| 30 | PRE = "pre" |
| 31 | POST = "post" |
| 32 | |
| 33 | |
| 34 | def _get_bumped_version(current: VersionInfo, bump_type: BumpType) -> VersionInfo: |
no outgoing calls
no test coverage detected
searching dependent graphs…