tidypolars requires polars >= 1.13.0.
New features
- Added support for
%notin%(#349). - Added support for
.beforeand.afterinmutate()(@Yousa-Mirage, #357). - Added support for
as.integer()(#360). - Added time zone support for datetime parsing functions (@Yousa-Mirage, #364).
Bug fixes
- Fix
.keepinmutate()to avoid accidentally dropping columns
(@Yousa-Mirage, #353). - Better consistency with
dplyrwhen usingNULLinmutate()to drop
columns (@Yousa-Mirage, #355). - Fix
relocate()to handle<tidy-select>helpers consistently withdplyr
(@Yousa-Mirage, #357). - Using the
tzargument instrptime()no longer errors (@dejse, @Yousa-Mirage,
#361) - Fix regression in column names after
count()oradd_count()with{{ }}
(#366).
- Fix a bug leading
right_join()/semi_join()/anti_join()to look up key name
wrongly and set incorrect column name (@Yousa-Mirage, #350).