From 3d97f8342881147255a722d9f35a34c91fda8430 Mon Sep 17 00:00:00 2001 From: pdeffebach <23196228+pdeffebach@users.noreply.github.com> Date: Mon, 18 Apr 2022 19:18:47 +0000 Subject: [PATCH] bump version to 0.11.0 (#327) * bump version to 0.11.0 * release notes * typo --- NEWS.md | 7 +++++++ Project.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 91c37336..608505b2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,10 @@ +# DataFramesMeta v0.11.0 Release notes + +* Allow `AsTable` on the RHS of transformations. This allows one to work with collections of columns programtically, such as taking the row-wise `mean` of many columns. ([#307](https://github.com/JuliaData/DataFramesMeta.jl/pull/307)) +* Expressions on the RHS of the form `f ∘ g` will now be passed directly to the underlying `transform` call without modification, reducing compilation latency. ([#317](https://github.com/JuliaData/DataFramesMeta.jl/pull/317)) +* Nested functions, of the form `f(g(:x))` will be transformed to `(f ∘ g)(:x)`, further reducing latency. ([#319](https://github.com/JuliaData/DataFramesMeta.jl/pull/319)) +* Improvements to documentation ([#305](https://github.com/JuliaData/DataFramesMeta.jl/pull/305), [#314](https://github.com/JuliaData/DataFramesMeta.jl/pull/314), [#315](https://github.com/JuliaData/DataFramesMeta.jl/pull/315), [#318](https://github.com/JuliaData/DataFramesMeta.jl/pull/318), [#322](https://github.com/JuliaData/DataFramesMeta.jl/pull/322), [#326](https://github.com/JuliaData/DataFramesMeta.jl/pull/326)) + # DataFramesMeta v0.10.0 Release notes * Add the `@astable` macro-flag to construct multiple inter-dependent columns at once. ([#298](https://github.com/JuliaData/DataFramesMeta.jl/pull/298)). diff --git a/Project.toml b/Project.toml index 4fede87a..d81e99ec 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "DataFramesMeta" uuid = "1313f7d8-7da2-5740-9ea0-a2ca25f37964" -version = "0.10.0" +version = "0.11.0" [deps] Chain = "8be319e6-bccf-4806-a6f7-6fae938471bc"