-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.4' into production
- Loading branch information
Showing
8 changed files
with
51 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,4 @@ inst\/doc\/DBI\.b..$ | |
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^cran-comments\.md$ | ||
^NEWS\.md$ | ||
^revdep$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r | ||
|
||
language: R | ||
cache: packages | ||
sudo: false | ||
cache: packages | ||
r: | ||
- oldrel | ||
- release | ||
- devel | ||
|
||
r_packages: covr | ||
|
||
after_success: | ||
- Rscript -e 'covr::codecov()' | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,31 @@ | ||
This is a patch release to fix two very minor problems (failed to export generic, used wrong method in default implementation of dbGetQuery). | ||
## Test environments | ||
* ubuntu 15.10 (local install), R 3.2.5 | ||
* ubuntu 12.04 (on travis-ci), R 3.2.5 | ||
* win-builder (devel) | ||
|
||
The following notes were generated across my local OS X install, ubuntu running on travis-ci and win builder (devel and release): | ||
## R CMD check results | ||
|
||
* checking CRAN incoming feasibility ... NOTE | ||
Possibly mis-spelled words in DESCRIPTION: | ||
DBI (8:36) | ||
0 errors | 0 warnings | 2 notes | ||
|
||
New maintainer: | ||
Kirill Müller <[email protected]> | ||
Old maintainer(s): | ||
Hadley Wickham <[email protected]> | ||
|
||
|
||
Found the following apparent S3 methods exported but not registered: | ||
print.list.pairs | ||
|
||
- Hadley agrees that I act as maintainer: https://github.com/rstats-db/DBI/commit/278f233c15ea629db8cc9ccd156d236d0a815cdd#commitcomment-16886895 | ||
|
||
- print.list.pairs() has been deprecated and will be removed soon. | ||
|
||
|
||
## Reverse dependencies | ||
|
||
* I have run R CMD check on the 61 downstream dependencies. | ||
(Summary at https://github.com/rstats-db/DBI/tree/0066ef1d03afc0c0caaf2436fa898755a2dba89f/revdep). | ||
|
||
These are correctly spelled. | ||
* There were failures and packages I could not install. For those packages that I could install, the DBI changes only seemed to trigger a regression in RMySQL, which will be investigated. | ||
|
||
I did not run R CMD check on downstream dependencies of DBI because the change is tiny. | ||
* All revdep maintainers were notified of the release on 2016-03-30. |