From 8b60e265e85b3854b731bd69e6bc1986ca71dcaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 4 Apr 2018 07:26:30 +0200 Subject: [PATCH] fledge: Bump version to 1.1.0 --- DESCRIPTION | 4 ++-- NEWS.md | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 0a3834db..cad35977 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: RPostgres Title: 'Rcpp' Interface to 'PostgreSQL' -Version: 1.0-4 -Date: 2017-12-20 +Version: 1.1.0 +Date: 2018-04-04 Authors@R: c( person("Hadley", "Wickham", role = "aut"), person("Jeroen", "Ooms", role = "aut"), diff --git a/NEWS.md b/NEWS.md index 29854216..8fc769e2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +# RPostgres 1.1.0 (2018-04-04) + +- Breaking change: `dbGetException()` is no longer reexported from DBI. +- Make "typname" information available after `dbFetch()` and `dbGetQuery()`. Values of unknown type are returned as character vector of class `"pq_xxx"`, where `"xxx"` is the "typname" returned from PostgreSQL. In particular, `JSON` and `JSONB` values now have class `"pq_json"` and `"pq_jsonb"`, respectively. The return value of `dbColumnInfo()` gains new columns `".oid"` (`integer`), `". known"` (`logical`) and `".typname"` (`character`)(#114, @etiennebr). +- Values of class `"integer64"` are now supported for `dbWriteTable()` and `dbBind()` (#178). +- Schema support, as specified by DBI: `dbListObjects()`, `dbUnquoteIdentifier()` and `Id()`. +- Names in the `x` argument to `dbQuoteIdentifier()` are preserved in the output (r-lib/DBI#173). +- All generics defined in DBI (e.g., `dbGetQuery()`) are now exported, even if the package doesn't provide a custom implementation (#168). +- Replace non-portable `timegm()` with private implementation. +- Correct reference to RPostgreSQL package (#165, @ClaytonJY). + + # RPostgres 1.0-4 (2017-12-20) - Only call `PQcancel()` if the query hasn't completed, fixes transactions on Amazon RedShift (#159, @mmuurr).