Skip to content

Commit

Permalink
Merge pull request #163 from TidierOrg/0.9.1-dev
Browse files Browse the repository at this point in the history
fixing documenter again
  • Loading branch information
rdboyes authored Jan 22, 2025
2 parents 59a44f1 + e2ad0bf commit 329f755
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/geoms/geom_boxplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ ggplot(penguins, @aes(x=species, y=bill_length_mm)) +
ggplot(penguins, @aes(y=species, x=bill_length_mm)) +
geom_boxplot()

ggplot(penguins, @aes(x=species, y=bill_length_mm, dodge=sex, fill=sex)) +
ggplot(penguins, @aes(x=species, y=bill_length_mm, fill=sex)) +
geom_boxplot()
2 changes: 1 addition & 1 deletion docs/examples/geoms/geom_violin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ ggplot(penguins, @aes(x = species, y = bill_length_mm)) +

#-

ggplot(penguins, @aes(x=species, y=bill_length_mm, dodge=sex, fill=sex)) +
ggplot(penguins, @aes(x=species, y=bill_length_mm, fill=sex)) +
geom_violin()
2 changes: 1 addition & 1 deletion src/geoms/geom_boxplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ggplot(penguins, @aes(x=species, y=bill_length_mm)) +
ggplot(penguins, @aes(y=species, x=bill_length_mm)) +
geom_boxplot()
ggplot(penguins, @aes(x=species, y=bill_length_mm, dodge=sex, fill=sex)) +
ggplot(penguins, @aes(x=species, y=bill_length_mm, fill=sex)) +
geom_boxplot()
```
"""
Expand Down

4 comments on commit 329f755

@rdboyes
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release Notes:

  • Upgraded warnings to errors throughout when options were not specified correctly to prevent cases where options were ignored silently
  • Increased test coverage to 100%

@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/123492

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.10.0 -m "<description of version>" 329f755f39aaa53543771383bafeaae8976c2199
git push origin v0.10.0

@rdboyes
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release Notes:

  • Increased test coverage to 100%
  • Bug fixes
  • Color and fill scales more closely match ggplot2 behaviour

Breaking Changes:

  • Upgraded warnings to errors throughout when options were not specified correctly to prevent cases where options were ignored silently

@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 updated: JuliaRegistries/General/123492

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.10.0 -m "<description of version>" 329f755f39aaa53543771383bafeaae8976c2199
git push origin v0.10.0

Please sign in to comment.