From fd4b2385332a48d423d314b90199af4b8b621139 Mon Sep 17 00:00:00 2001 From: Steven Mortimer Date: Thu, 29 Mar 2018 09:59:37 -0400 Subject: [PATCH] Version Bump --- DESCRIPTION | 4 +-- NEWS.md | 19 ++++++++++++-- docs/NEWS.html | 39 ++++++++++++++++++++------- docs/articles/index.html | 2 +- docs/articles/pulling-reports.html | 7 ++--- docs/news/index.html | 42 ++++++++++++++++++++++-------- docs/reference/index.html | 2 +- vignettes/pulling-reports.Rmd | 6 +---- 8 files changed, 84 insertions(+), 37 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2ccd18a..ceefb27 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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 diff --git a/NEWS.md b/NEWS.md index 19610be..9d93c6f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 diff --git a/docs/NEWS.html b/docs/NEWS.html index d62275a..6080aea 100644 --- a/docs/NEWS.html +++ b/docs/NEWS.html @@ -120,23 +120,42 @@

/Users/steven.mortimer/github/rdfp/NEWS.md

-
+

-rdfp 0.1.0.9000

+rdfp 0.1.1.9000

Features

    -
  • Upgraded to API version v201802 -
  • -
  • Created more efficient parsers parse_soap_response() -
  • +
  • Nothing yet!

Bug Fixes

    +
  • Nothing yet!
  • +
+
+
+
+
+

+rdfp 0.1.1 release +

+
+

+Features

+
    +
  • Upgraded to API version v201802 +
  • +
  • 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

+
  • Line item targeting does not come back as a matrix. It is preserved as a list so it can be directly passed back into the ForecastService functions or LineItemService to get detailed availability

@@ -146,9 +165,9 @@

rdfp 0.1.0 release

-
+

-Features

+Features
  • Simple Administrative Tools:
      @@ -185,9 +204,9 @@

-
+

-Bug Fixes

+Bug Fixes
  • None.
diff --git a/docs/articles/index.html b/docs/articles/index.html index f523d74..5cf106c 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -114,7 +114,7 @@
diff --git a/docs/articles/pulling-reports.html b/docs/articles/pulling-reports.html index 78f130a..b85b2a2 100644 --- a/docs/articles/pulling-reports.html +++ b/docs/articles/pulling-reports.html @@ -146,8 +146,7 @@

A More Detailed Explanation of the Report Process

Reports actually require 3 steps from the [ReportService] (https://developers.google.com/doubleclick-publishers/docs/reference/v201802/ReportService): 1) to request the report, 2) check on its status, and 3) download. This basic process flow is required for all reports requested via this service. The wrapper function used above named dfp_full_report_wrapper manages all aspects of reporting, so this level of detail is not needed unless the wrapper service does not quite fit your needs.

-

-# create a reportJob object
+
# create a reportJob object
 # reportJobs consist of a reportQuery
 # Documentation for the reportQuery object can be found in R using 
 # ?dfp_ReportService_object_factory and searching for ReportQuery
@@ -157,9 +156,7 @@ 

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 diff --git a/docs/news/index.html b/docs/news/index.html index 6c63b2a..43eacd3 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -121,23 +121,42 @@

Change log All releases

-
+

-rdfp 0.1.0.9000

+rdfp 0.1.1.9000

Features

    -
  • Upgraded to API version v201802 -
  • -
  • Created more efficient parsers parse_soap_response() -
  • +
  • Nothing yet!

Bug Fixes

    +
  • Nothing yet!
  • +
+
+
+
+
+

+rdfp 0.1.1 release +

+
+

+Features

+
    +
  • Upgraded to API version v201802 +
  • +
  • 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

+
  • Line item targeting does not come back as a matrix. It is preserved as a list so it can be directly passed back into the ForecastService functions or LineItemService to get detailed availability

@@ -147,9 +166,9 @@

rdfp 0.1.0 release

-
+

-Features

+Features
  • Simple Administrative Tools:
      @@ -186,9 +205,9 @@

-
+

-Bug Fixes

+Bug Fixes
  • None.
@@ -201,7 +220,8 @@

Contents

diff --git a/docs/reference/index.html b/docs/reference/index.html index 4790cea..9d8e4da 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -118,7 +118,7 @@ diff --git a/vignettes/pulling-reports.Rmd b/vignettes/pulling-reports.Rmd index 0492a5d..02b330f 100644 --- a/vignettes/pulling-reports.Rmd +++ b/vignettes/pulling-reports.Rmd @@ -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 @@ -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 @@ -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) - ```