Skip to content

Commit

Permalink
news update for 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rdboyes committed Apr 8, 2024
1 parent 7ea132c commit 269933c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# TidierPlots.jl updates

# v0.6.4 - 2024-04-08

- Bug Fix: Implementations of subtract and divide in 0.6.3 were not correct
- Functions wrapped with `aesthetics_function` can now be applied to multiple columns in aes

# v0.6.3 - 2024-04-07

- Support for `+`, `-`, `*`, and `/` inside `aes` function to specify calculated aesthetics
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ geom_point(aes(x = :x >> my_fn))
geom_point(aes(x = my_aes_fn(:x)))
```

Functions can take multiple columns as input (up to two, currently). The following `geom_point` specifications are equivalent, and result in `x / y` being plotted as the x axis of the graph:
Functions can take multiple columns as input (up to two, currently). The following `geom_point` specifications are equivalent, and result in `x / y` (where `x` and `y` are the names of columns in a DataFrame) being plotted as the x axis of the graph:

```
my_new_fn(x, y) = x ./ y
Expand Down

2 comments on commit 269933c

@rdboyes
Copy link
Member Author

@rdboyes rdboyes commented on 269933c Apr 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/104469

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.4 -m "<description of version>" 269933cf74345224ccbfe30ce7a739bd4b734812
git push origin v0.6.4

Please sign in to comment.