Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicated auholidays rows #109

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: strayr
Type: Package
Title: Ready-to-use Australian common structures and classifications and tools for working with them
Version: 0.2.2.9000
Version: 0.2.2.9001
Authors@R: c(person("Will", "Mackey", email = "[email protected]", role = c("aut", "cre")),
person("Matt", "Johnson", email = "[email protected]", role = c("aut")),
person("David", "Diviny", email = "[email protected]", role = c("aut")),
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* `create read_correspondence_tbl()` reads correspondence tables from
`absmapsdata` similarly to `read_absmap()`
* updated `anzsco2006` to include leading zeros in codes (see ). This is a backwards incompatible change that may cause issues (not enough for a major version progression)
* fixed duplication in auholidays

# strayr 0.2.2
* `anzsco2022` updated to reflect changes made by the ABS
Expand Down
4 changes: 2 additions & 2 deletions data-raw/create_au_holidays.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ auholidays <- raw_data %>%
Name = coalesce(`Holiday Name`),
Jurisdiction = coalesce(`Applicable To`, Jurisdiction),
Jurisdiction = str_to_upper(Jurisdiction)
)

) |>
distinct()

usethis::use_data(auholidays, internal = FALSE, overwrite = TRUE)
Binary file modified data/auholidays.rda
Binary file not shown.
Loading