Skip to content
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
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@
data. The `wpp2017` package is now a suggested dependency rather than a
required import (#258).

* Reduced cyclomatic complexity of `try_merge_additional_files()` by extracting
helper functions (#289).

* Fixed unmatched-merge warning count when merging files with duplicate keys;
previously, the count could be wrong (or negative) due to counting join pairs
rather than distinct matched rows (#289).

* `get_survey()`, `download_survey()`, `list_surveys()`, `get_citation()`, and
`survey_countries()` now warn unconditionally when called. These functions
were soft-deprecated in 0.5.0 and users should switch to the
Expand Down
2 changes: 1 addition & 1 deletion R/globals.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ utils::globalVariables(c(
"title", # <.list_surveys>
"creator", # <.list_surveys>
"identifier.2", # <.list_surveys>
"..merge_id", # <try_merge_additional_files>
"..merge_id", # <try_merge_one_file>
"..main_id", # <try_merge_additional_files>
"..original.lower.age.limit", # <pop_age>
"..segment", # <pop_age>
Expand Down
Loading