Skip to content

Commit 601bdfd

Browse files
committed
Bump the version number and update release notes
1 parent a33e998 commit 601bdfd

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

NEWS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Release Notes
22

3+
## v0.13.1
4+
5+
* Add support for grouping sets, which are used in SQL to calculate totals
6+
and subtotals. The `Group()` node accepts an optional parameter `sets`,
7+
which is either a grouping mode indicator `:cube` or `:rollup`, or
8+
a collection of grouping key sets `Vector{Vector{Symbol}}`. Examples:
9+
10+
```julia
11+
From(:person) |> Group(:year_of_birth, sets = :cube)
12+
13+
From(:person) |> Group(:year_of_birth, :month_of_birth, sets = :rollup)
14+
15+
From(:person) |> Group(:year_of_birth, :gender_concept_id,
16+
sets = [[:year_of_birth], [:gender_concept_id]])
17+
```
18+
19+
320
## v0.13.0
421

522
This release introduces some backward-incompatible changes. Before upgrading,

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FunSQL"
22
uuid = "cf6cc811-59f4-4a10-b258-a8547a8f6407"
33
authors = ["Kirill Simonov <xi@resolvent.net>", "Clark C. Evans <cce@clarkevans.com>"]
4-
version = "0.13.0"
4+
version = "0.13.1"
55

66
[deps]
77
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"

0 commit comments

Comments
 (0)