Skip to content

Commit

Permalink
closes #107
Browse files Browse the repository at this point in the history
  • Loading branch information
MattCowgill committed Oct 24, 2023
1 parent 5846b40 commit 6246361
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
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.

0 comments on commit 6246361

Please sign in to comment.