Skip to content

Releases: chipnertkj/delegate-match

v0.2.0

10 Sep 15:57
v0.2.0
3b83d0c

Choose a tag to compare

  • Relaxed comma restrictions for match arms.

    match arms that resolve to block expressions no longer require a trailing comma.

  • Improved parsing of associated items ($assoc_ts).

    Associated items can now be one of the following:

    1. an expression,
    2. a statement,
    3. a pattern,
    4. a type.

    The parser attempts to interpret tokens in the above order. If none match, the item is considered invalid.

    This replaces the previous ad hoc parsing logic, which failed to handle some edge cases.

  • Removed lockfile, updated dependency requirements.

    Since this is a procedural macro library, the Cargo.lock file has been removed. Dependencies now use more flexible version specifications (e.g., syn = "2.0" instead of pinning exact versions).

v0.1.0

29 Jun 03:34
v0.1.0
92c58af

Choose a tag to compare

Initial release.