Skip to content

Commit

Permalink
release 0.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Oct 5, 2022
1 parent 73c92fa commit 4c9ce34
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2022-10-05 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): New release 0.3.14

* R/bdh.R (bdh): Replace a class() test with inherits()

2022-10-04 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Suggests): No longer suggest 'fts'
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Rblpapi
Title: R Interface to 'Bloomberg'
Version: 0.3.13.2
Date: 2022-10-04
Version: 0.3.14
Date: 2022-10-05
Maintainer: Dirk Eddelbuettel <[email protected]>
Author: Whit Armstrong, Dirk Eddelbuettel and John Laing
Imports: Rcpp (>= 0.11.0), utils
Expand Down
2 changes: 1 addition & 1 deletion R/bdh.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ bdh <- function(securities, fields, start.date, end.date=NULL,
int.as.double=getOption("blpIntAsDouble", FALSE),
simplify=getOption("blpSimplify", TRUE)) {
match.arg(returnAs, c("data.frame", "xts", "zoo", "data.table"))
if (class(start.date) == "Date") {
if (inherits(start.date, "Date")) {
start.date <- format(start.date, format="%Y%m%d")
}
if (!is.null(end.date)) {
Expand Down
15 changes: 15 additions & 0 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
\newcommand{\ghpr}{\href{https://github.com/Rblp/Rblpapi/pull/#1}{##1}}
\newcommand{\ghit}{\href{https://github.com/Rblp/Rblpapi/issues/#1}{##1}}

\section{Changes in Rblpapi version 0.3.14 (2022-10-05)}{
\itemize{
\item Build configuration was generalized to consider local copies
of library and headers (Dirk in \ghpr{362})
\item A ticker symbol was corrected (Dirk in \ghpr{368} addressing
an issue \ghit{366} and \ghit{367})
\item Support for B-PIPE was added (Robert Harlow in \ghpr{369}
closing \ghit{342})
\item The package no longer requires staged installation thanks to
an assist from Tomas Kalibera (Dirk in \ghpr{373})
\item The retired package \pkg{fts} is no longer suggested (Dirk in
\ghpr{374} closing \ghpr{372})
}
}

\section{Changes in Rblpapi version 0.3.13 (2022-01-09)}{
\itemize{
\item Add a test for \code{bds} (Michael Kerber in \ghpr{352})
Expand Down

0 comments on commit 4c9ce34

Please sign in to comment.