Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMMortimer committed Mar 29, 2018
1 parent a14f04e commit fd4b238
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 37 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rdfp
Title: DoubleClick for Publishers API from R
Version: 0.1.0.9000
Date: 2018-03-27
Version: 0.1.1
Date: 2018-03-29
Description: An implementation of Google's DoubleClick for Publishers API in R.
This package is automatically compiled from the API WSDLs (Web Service Description
Language) files to dictate how the API is structured. Theoretically, all API
Expand Down
19 changes: 17 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
## rdfp 0.1.0.9000
## rdfp 0.1.1.9000


### Features

* Nothing yet!

### Bug Fixes

* Nothing yet!

---

## rdfp 0.1.1 [release](https://github.com/StevenMMortimer/rdfp/releases/tag/v0.1.1)


### Features

* Upgraded to API version `v201802`
* Created more efficient parsers `parse_soap_response()`
* Created more efficient parsers `parse_soap_response()`. Warning: This will cause
some breaking changes because how certain results are returned may be different.

### Bug Fixes

Expand Down
39 changes: 29 additions & 10 deletions docs/NEWS.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions docs/articles/pulling-reports.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 31 additions & 11 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions vignettes/pulling-reports.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ named `dfp_full_report_wrapper` manages all aspects of reporting, so this level
detail is not needed unless the wrapper service does not quite fit your needs.

```{r eval = FALSE}
# create a reportJob object
# reportJobs consist of a reportQuery
# Documentation for the reportQuery object can be found in R using
Expand All @@ -126,9 +125,7 @@ request_data <- list(reportJob=list(reportQuery=list(dimensions='MONTH_AND_YEAR'
dimensions='AD_UNIT_ID',
adUnitView='FLAT',
columns='TOTAL_INVENTORY_LEVEL_IMPRESSIONS',
startDate=list(year=2018, month=10, day=1),
endDate=list(year=2018, month=10, day=31),
dateRangeType='CUSTOM_DATE'
dateRangeType='LAST_WEEK'
)))
# the result is a list and most importantly the ID is included for checking its status
Expand Down Expand Up @@ -160,5 +157,4 @@ dfp_getReportDownloadURL_result <- dfp_getReportDownloadURL(request_data)
report_dat <- dfp_report_url_to_dataframe(report_url=dfp_getReportDownloadURL_result,
exportFormat='CSV_DUMP')
head(report_dat)
```

0 comments on commit fd4b238

Please sign in to comment.