Skip to content

Commit f950499

Browse files
committed
chore: Update bumo to 1.1.1.0
1 parent 3371834 commit f950499

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Revision history for dataframe
22

3+
## 1.1.1.0
4+
### New features
5+
* Add `DataFrame.Typed.Lazy` module — a type-safe lazy query pipeline combining compile-time schema tracking with deferred execution.
6+
* Add `fromCsv` function for parsing a CSV string directly into a DataFrame.
7+
* Add `DataKinds` extension and `DataFrame.Typed` import to the GHCi file for easier interactive typed dataframe workflows.
8+
9+
### Performance
10+
* Specialize and inline aggregation functions (`sum`, `mean`, `variance`, `median`, `stddev`, etc.) to avoid expensive numeric conversions at runtime.
11+
* Remove `Ord` constraint from `Columnable'` and move it to call sites, reducing unnecessary constraint propagation.
12+
* Replace exponential type-level `If` nesting in typed schema families with linear helper type families, fixing slow compilation times.
13+
14+
### Bug fixes
15+
* Fix Functions module compilation under GHC 9.10 (#194).
16+
* Document and test `safeColumns` option in `ParquetReadOptions` (#190).
17+
318
## 1.1.0.0
419
### Breaking changes
520
* Remove `OptionalColumn` constructor; fold nullability into `BoxedColumn`/`UnboxedColumn` via bit-packed bitmap.

dataframe.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: dataframe
3-
version: 1.1.0.0
3+
version: 1.1.1.0
44

55
synopsis: A fast, safe, and intuitive DataFrame library.
66

0 commit comments

Comments
 (0)