Skip to content

v6.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Apr 22:57
b80c609

Release created on: 09.04.2024 - 22:57:14

New Features

None

Changes

  • Removed questionable feature of method overloads as a clear semantic definition is currently unclear.
    • Split SemanticVersion constructor into:
      1. def __init__(self, major: int, minor: int, patch: int = 0, build: int = 0, flags: Flags = Flags.Clean) -> None`:
      2. @classmethod
        def Parse(cls, versionString : str) -> "SemanticVersion":

Bug Fixes

  • Fixed search for methods with attributes in multiple inheritance scenarios.