From df97dafad22c5aee280c07ec6c0bd4baa3d97602 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Sat, 15 Jul 2023 02:57:11 -0400 Subject: [PATCH] Updated NEWS.md, bumped version to 0.7.7. --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index 1ad8207..66aa0bc 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,10 @@ # Tidier.jl updates +## v0.7.7 - 2023-07-15 +- Added documentation on how to interpolate variables inside of `for` loops. Note: `!!` interpolation doesn't work inside of `for` loops because macros are expanded during parsing and not at runtime. +- Fixed bug in `parse_pivot_arg()` to enable interpolation inside of pivoting functions when used inside a `for` loop. +- Added `cumsum()`, `cumprod()`, and `accumulate()` to the do-not-vectorize list. + ## v0.7.6 - 2023-05-04 - Fixed bug to allow multiple columns in `@distinct()` separated by commas or using selection helpers.