Skip to content

Commit

Permalink
Bumped version to 0.12.1, fixed documentation due to failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Karandeep Singh committed Sep 11, 2023
1 parent 2cd90da commit 2f55ddc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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()`
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/UserGuide/sep_unite.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2f55ddc

Please sign in to comment.