From 0f323e558095da6583dda6014fbb52d6a6ef5703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Mon, 8 Feb 2016 12:57:51 +0100 Subject: [PATCH 1/2] bump version to 1.0-6 --- DESCRIPTION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 11095bfe8..f64076a4b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: DBItest Title: Testing "DBI" Back Ends -Version: 1.0-5 -Date: 2016-02-06 +Version: 1.0-6 +Date: 2016-02-08 Authors@R: c( person(given = "Kirill", family = "Müller", role = c("aut", "cre"), email = "krlmlr+r@mailbox.org"), person("RStudio", role = "cph") ) From 4d3a8c8e3779d729a000ca0c0673e1813d4d5f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Mon, 8 Feb 2016 12:59:46 +0100 Subject: [PATCH 2/2] NEWS --- NEWS.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/NEWS.md b/NEWS.md index 7c69f0212..37b14589a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +Version 1.0-6 (2016-02-08) +=== + +- Fix broken tests for quoting. +- Call `dbRemoveTable()` instead of issuing `DROP` requests, the latter might be unsupported. +- Use subqueries in queries that use `WHERE`. +- Remove test for `dbGetException()` (rstats-db/DBI#51). +- New tweak `strict_identifier`, if `TRUE` all identifier must be syntactic names even if quoted. The quoting test is now split, and a part is ignored conditional to this tweak. + + Version 1.0-5 (2016-02-06) ===