Skip to content

Commit

Permalink
Bump the version number and update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
xitology committed Jul 8, 2024
1 parent a6a31bd commit 6de9a93
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FunSQL"
uuid = "cf6cc811-59f4-4a10-b258-a8547a8f6407"
authors = ["Kirill Simonov <xi@resolvent.net>", "Clark C. Evans <cce@clarkevans.com>"]
version = "0.14.0"
version = "0.14.1"

[deps]
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
Expand Down

2 comments on commit 6de9a93

@xitology
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • 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.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/110635

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.14.1 -m "<description of version>" 6de9a93d020de9bfb796b504fd5e58af901ff686
git push origin v0.14.1

Please sign in to comment.