diff --git a/DESCRIPTION b/DESCRIPTION index fb1fd7950..e10b941e5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: RSQLite -Version: 1.0.9013 -Date: 2016-10-01 +Version: 1.0.9014 +Date: 2016-10-06 Title: SQLite Interface for R Authors@R: c( person("Kirill", "Müller", role = c("aut", "cre"), email = "krlmlr+r@mailbox.org"), diff --git a/NEWS.md b/NEWS.md index 3dacf8117..4ec9c1b50 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +## RSQLite 1.0.9014 (2016-10-06) + +- `dbWriteTable()` supports `temporary` argument, default `FALSE` (#113). +- The `name` argument to the transaction methods appears before the ellipsis for compatibility reasons. +- Use new `dbSendStatement()` and `dbExecute()` internally. +- Deprecation warnings are given only once, with a clear reference to the source. +- Undeprecate `sqliteQuickColumn()` and `fetch()`. +- Multi-row binding implemented in C++ (#168, #178). +- All DBI methods contain an ellipsis `...` in their signature. + + ## RSQLite 1.0.9013 (2016-10-01) - Use `plogr` for logging.