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 Mar 8, 2024
1 parent a33e998 commit 601bdfd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Release Notes

## v0.13.1

* Add support for grouping sets, which are used in SQL to calculate totals
and subtotals. The `Group()` node accepts an optional parameter `sets`,
which is either a grouping mode indicator `:cube` or `:rollup`, or
a collection of grouping key sets `Vector{Vector{Symbol}}`. Examples:

```julia
From(:person) |> Group(:year_of_birth, sets = :cube)

From(:person) |> Group(:year_of_birth, :month_of_birth, sets = :rollup)

From(:person) |> Group(:year_of_birth, :gender_concept_id,
sets = [[:year_of_birth], [:gender_concept_id]])
```


## v0.13.0

This release introduces some backward-incompatible changes. Before upgrading,
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 <[email protected]>", "Clark C. Evans <[email protected]>"]
version = "0.13.0"
version = "0.13.1"

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

2 comments on commit 601bdfd

@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:

  • Add support for grouping sets, which are used in SQL to calculate totals
    and subtotals. The Group() node accepts an optional parameter sets,
    which is either a grouping mode indicator :cube or :rollup, or
    a collection of grouping key sets Vector{Vector{Symbol}}. Examples:

    From(:person) |> Group(:year_of_birth, sets = :cube)
    
    From(:person) |> Group(:year_of_birth, :month_of_birth, sets = :rollup)
    
    From(:person) |> Group(:year_of_birth, :gender_concept_id,
                           sets = [[:year_of_birth], [:gender_concept_id]])

@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/102554

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.13.1 -m "<description of version>" 601bdfdd234fa6f42c4636366a650b9b7b829bc9
git push origin v0.13.1

Please sign in to comment.