From 2f55ddcaedbfeda2449723f1bc0bb2b91d6f0ec3 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Mon, 11 Sep 2023 15:09:33 -0400 Subject: [PATCH] Bumped version to 0.12.1, fixed documentation due to failing test. --- NEWS.md | 3 +++ Project.toml | 2 +- docs/examples/UserGuide/sep_unite.jl | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index 31e26729..650b31bf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,8 @@ # TidierData.jl updates +## v0.12.1 - 2023-09-11 +- Fixes bug in `@separate()` so that the value of `into` supports interpolation. + ## v0.12.0 - 2023-09-10 - Fixes `!!` interpolation so that it works using normal Julia scoping rules. It no longer uses `Main.eval()` in the implementation. The way interpolation works contains some breaking changes, and the documentation has been updated accordingly. - Fixes name conflict with `Cleaner.rename()` and `DataFrames.rename()` diff --git a/Project.toml b/Project.toml index 3d052d13..ad78fe2f 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TidierData" uuid = "fe2206b3-d496-4ee9-a338-6a095c4ece80" authors = ["Karandeep Singh"] -version = "0.12.0" +version = "0.12.1" [deps] Chain = "8be319e6-bccf-4806-a6f7-6fae938471bc" diff --git a/docs/examples/UserGuide/sep_unite.jl b/docs/examples/UserGuide/sep_unite.jl index c2acd9d9..9c0888d7 100644 --- a/docs/examples/UserGuide/sep_unite.jl +++ b/docs/examples/UserGuide/sep_unite.jl @@ -12,9 +12,9 @@ end # The into columns can also be designated as follows -new_names = ["x$(i)" for i in 1:3]; ### or new_names = ["b", "c", "d"], or new_names = [:b, :c, :d] +new_names = ["x$(i)" for i in 1:3]; # or new_names = ["b", "c", "d"], or new_names = [:b, :c, :d] -@separate(df, a, new_names, "-") +@separate(df, a, !!new_names, "-") # The `@unite` macro brings together multiple columns into one, separate the characters by a user specified delimiter