diff --git a/CHANGES.md b/CHANGES.md index 2be4eba..4169535 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,29 @@ + +v2.4.0 / 2024-12-25 +=================== + + * Add support for named tuples and matching fields + by name rather than position. + +v2.3.0 / 2024-11-24 +=================== + + * Add support for "extractors", which adds some support + for user-defined pattern-matching behavior. + +v2.2.0 / 2024-11-11 +=================== + + * Add support for MLStyle-style guards, which are + patterns of the form `if condition end`. This should + make it easier for people migrating from MLStyle. + +v2.1.0 / 2023-12-19 +=================== + + * When a variable is defined on only one side of a disjuntion, + it is not considered to have been defined after the disjunction. + v2.0.0 / 2023-08-02 =================== diff --git a/Project.toml b/Project.toml index dfefd43..1fc08a5 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Match" uuid = "7eb4fadd-790c-5f42-8a69-bfa0b872bfbf" -version = "2.3.0" -authors = ["Neal Gafter ", "Kevin Squire "] +version = "2.4.0" +authors = ["Neal Gafter ", "Nate Nystrom ", "Kevin Squire "] [deps] MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"