Skip to content

Commit d38464b

Browse files
Merge pull request #68 from Teal-Insights/67-polish-newsmd-for-100-release
Release prep
2 parents bb956df + 75c9915 commit d38464b

File tree

6 files changed

+35
-8
lines changed

6 files changed

+35
-8
lines changed

Diff for: DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Package: wbids
22
Title: Seamless Access to World Bank International Debt Statistics (IDS)
3-
Version: 0.1.0.9005
3+
Version: 1.0.0
44
Authors@R:
55
c(person("Teal", "Emery", , "[email protected]", role = c("aut", "cre")),
66
person("Teal Insights", role = c("cph")),
77
person("Christoph", "Scheuch", , "[email protected]",
88
role = c("aut"), comment = c(ORCID = "0009-0004-0423-6819")),
99
person("Christopher", "Smith", email = "[email protected]",
1010
role = c("ctb")))
11-
Description: Access and analyze the World Bank'’'s International Debt Statistics
11+
Description: Access and analyze the World Bank's International Debt Statistics
1212
(IDS) <https://datacatalog.worldbank.org/search/dataset/0038015>.
1313
IDS provides creditor-debtor relationships between countries, regions, and
1414
institutions. 'wbids' enables users to download, process and work with IDS

Diff for: NEWS.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
# wbids (development version)
1+
# wbids 1.0.0
2+
3+
* `ids_get()` Roxygen2 documentation enhancements.
4+
* `ids_get()` now makes a single consolidated API call for all series and countries rather than one call per series-country combination, greatly improving performance.
5+
* `ids_get()` now fails with an informative error message if the user requests too much data.
6+
* `ids_get()` now takes `start_year` and `end_year` rather than `start_date` and `end_date` arguments (breaking change).
27

38
## Bug fixes
49

510
* `ids_list_counterparts()` now contains `counterpart_iso2code` for all countries and regions.
11+
* `read_bulk_file()` now returns the correct column for `counterpart_id`.
12+
* `ids_get()` no longer returns NAs for some geographies.
13+
* `ids_get()` no longer returns the wrong counterpart_type for some rows.
14+
* `ids_get()` now removes trailing whitespace and correctly encodes special characters.
15+
* Removed a third-party dependency that was causing tests to fail on CRAN.
616

717
# wbids 0.1.0
818

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ ids_get(
6565
geographies = c("ZMB", "ZAF"),
6666
series = c("DT.DOD.DPPG.CD", "BM.GSR.TOTL.CD"),
6767
counterparts = c("216", "231"),
68-
start_date = 2015,
69-
end_date = 2020
68+
start_year = 2015,
69+
end_year = 2020
7070
)
7171
```
7272

Diff for: cran-comments.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## R CMD check results
22

3-
0 errors | 0 warnings | 1 note
3+
0 errors | 0 warnings | 0 notes
44

5-
* New submission.
5+
### CRAN comments
6+
7+
>It seems we need to remind you of the CRAN policy:
8+
>
9+
>'Packages which use Internet resources should fail gracefully with an informative message
10+
>if the resource is not available or has changed (and not give a check warning nor error).'
11+
12+
Fixed; the test in question now uses a mock for the invalid URL rather than actually trying to access it.

Diff for: man/wbids-package.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: renv.lock

+10
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,16 @@
161161
],
162162
"Hash": "7ce2733a9826b3aeb1775d56fd305472"
163163
},
164+
"mime": {
165+
"Package": "mime",
166+
"Version": "0.12",
167+
"Source": "Repository",
168+
"Repository": "CRAN",
169+
"Requirements": [
170+
"tools"
171+
],
172+
"Hash": "18e9c28c1d3ca1560ce30658b22ce104"
173+
},
164174
"openssl": {
165175
"Package": "openssl",
166176
"Version": "2.2.2",

0 commit comments

Comments
 (0)