zigbee-herdsman
    Preparing search index...

    Type Alias EmberVersion

    A version structure containing all version information.

    type EmberVersion = {
        build: number;
        major: number;
        minor: number;
        patch: number;
        special: number;
        type: EmberVersionType;
    }
    Index

    Properties

    build: number

    A unique build number generated by Silicon Labs' internal build engineering process

    uint16_t

    major: number

    Major version number (used to indicate major architectural changes or significant supported platform changes).

    A.b.c.d uint8_t

    minor: number

    Minor version number (used to indicate significant new features, API changes; not always code-compatible with previous minor versions).

    a.B.c.d uint8_t

    patch: number

    Patch (sub-minor) version number (used to indicate bug fixes or minor features that don't affect code-compatibility with previous application code).

    a.b.C.d uint8_t

    special: number

    Special version number (used to indicate superficial changes that don't require re-certification of the stack as a ZigBee-Compliant Platform, such as changes that only affect installer packaging, documentation, or comments in the code)

    a.b.c.D uint8_t

    Corresponding to an enum value from EmberVersionType.

    Pre-release, Alpha, Beta, GA