diff --git a/NEWS.md b/NEWS.md index 77d22e83..84bdb663 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,15 @@ # Release Notes +## V0.14.1 + +* Fix `Join` incorrectly collapsing an outer branch when it may transform a NULL + to a non-NULL value. + +* Make `@funsql` macro support operators `≥`, `≤`, `≢`, `≡`, `≠`, `∉`, `∈` + as aliases for `>=`, `<=`, `IS DISTINCT FROM`, `IS NOT DISTINCT FROM`, `<>`, + `IN`, `NOT IN`, thanks to Ashlin Harris. + + ## v0.14.0 * `Define`: add parameters `before` and `after` for specifying position diff --git a/Project.toml b/Project.toml index 3e767e9f..64ad0d17 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "FunSQL" uuid = "cf6cc811-59f4-4a10-b258-a8547a8f6407" authors = ["Kirill Simonov ", "Clark C. Evans "] -version = "0.14.0" +version = "0.14.1" [deps] DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"