Skip to content

Commit 2b4cea0

Browse files
authored
Merge pull request #333 from Rblp/feature/release_0.3.11
New release 0.3.11 (closes: #328)
2 parents d50462c + 0761734 commit 2b4cea0

File tree

6 files changed

+54
-9
lines changed

6 files changed

+54
-9
lines changed

ChangeLog

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
2021-04-20 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): New release 0.3.11
4+
5+
2021-04-19 John Laing <[email protected]>
6+
7+
* man/bds.Rd: Regenerate based on updated roxygen
8+
* R/bds.R: Simply given single argument
9+
10+
2021-04-18 Dirk Eddelbuettel <[email protected]>
11+
12+
* DESCRIPTION (Suggests): Add rmarkdown
13+
14+
* R/subscribe.R: Update two URLs to https
15+
* man/subscribe.Rd: Ditto
16+
* README.md: Ditto
17+
18+
2021-04-17 Dirk Eddelbuettel <[email protected]>
19+
20+
* tests/tinytest.R: Renamed and converted from doRUnit.R
21+
* inst/tinytest/*: Renamed and converted from RUnit to testthat
22+
* DESCRIPTION (Suggests): Switched from RUnit to tinytest
23+
24+
* vignettes/rblpapi-intro.Rmd: Switched to minidown
25+
* DESCRIPTION (Suggests): Added minidown
26+
127
2021-03-17 Dirk Eddelbuettel <[email protected]>
228

329
* configure: Change from bash to sh
@@ -10,6 +36,10 @@
1036

1137
* .travis.yml: Switch to bionic and use run.sh from r-ci
1238

39+
2021-02-25 Michael Kerber <[email protected]>
40+
41+
* man/bds.Rd: Correct return type desription
42+
1343
2020-05-19 Dirk Eddelbuettel <[email protected]>
1444

1545
* README.md: Add 'last commit' badge

DESCRIPTION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Package: Rblpapi
22
Title: R Interface to 'Bloomberg'
3-
Version: 0.3.10
4-
Date: 2019-04-02
3+
Version: 0.3.11
4+
Date: 2021-04-20
55
Maintainer: Dirk Eddelbuettel <[email protected]>
66
Author: Whit Armstrong, Dirk Eddelbuettel and John Laing
77
Imports: Rcpp (>= 0.11.0), utils
8-
Suggests: fts, xts, zoo, data.table, knitr, minidown, tinytest
8+
Suggests: fts, xts, zoo, data.table, knitr, rmarkdown, minidown, tinytest
99
VignetteBuilder: knitr
1010
LazyLoad: yes
1111
StagedInstall: no

R/subscribe.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
##'
2828
##' Full detials of the subscription string can be found in the header
2929
##' file
30-
##' \href{http://bloomberg.github.io/blpapi-docs/cpp/3.8/blpapi__subscriptionlist_8h.html}{blpapi_subscriptionlist.h}.
30+
##' \href{https://bloomberg.github.io/blpapi-docs/cpp/3.8/blpapi__subscriptionlist_8h.html}{blpapi_subscriptionlist.h}.
3131
##'
3232
##' @param securities A character vector with security symbols in
3333
##' Bloomberg notation.
@@ -43,7 +43,7 @@
4343
##' call, and retrieved via the internal function
4444
##' \code{defaultConnection}.
4545
##' @return This function always returns NULL.
46-
##' @references \url{http://bloomberg.github.io/blpapi-docs/cpp/3.8}
46+
##' @references \url{https://bloomberg.github.io/blpapi-docs/cpp/3.8/}
4747
##' @author Whit Armstrong
4848
##' @examples
4949
##' \dontrun{

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![LibraryLicense](https://img.shields.io/badge/license-License.txt-yellow.svg?style=flat)](https://raw.githubusercontent.com/Rblp/Rblpapi/master/inst/License.txt)
77
[![CRAN](http://www.r-pkg.org/badges/version/Rblpapi)](https://cran.r-project.org/package=Rblpapi)
88
[![Dependencies](https://tinyverse.netlify.com/badge/Rblpapi)](https://cran.r-project.org/package=Rblpapi)
9-
[![Downloads](http://cranlogs.r-pkg.org/badges/Rblpapi?color=brightgreen)](http://www.r-pkg.org/pkg/Rblpapi)
9+
[![Downloads](http://cranlogs.r-pkg.org/badges/Rblpapi?color=brightgreen)](https://www.r-pkg.org:443/pkg/Rblpapi)
1010
[![Last Commit](https://img.shields.io/github/last-commit/Rblp/Rblpapi)](https://github.com/Rblp/Rblpapi)
1111

1212
### Background
@@ -67,7 +67,7 @@ install.packages("Rblpapi")
6767
```
6868

6969
Interim (source or binary) releases _may_ be also be made available through the
70-
[ghrr drat](http://ghrr.github.io/drat) repository as well and can be accessed via
70+
[ghrr drat](https://ghrr.github.io/drat/) repository as well and can be accessed via
7171

7272
```r
7373
install.packages("drat") # easier repo access + creation

inst/NEWS.Rd

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
\newcommand{\ghpr}{\href{https://github.com/Rblp/Rblpapi/pull/#1}{##1}}
55
\newcommand{\ghit}{\href{https://github.com/Rblp/Rblpapi/issues/#1}{##1}}
66

7+
\section{Changes in Rblpapi version 0.3.11 (2021-04-20)}{
8+
\itemize{
9+
\item Support blpAutoAuthenticate and B-PIPE access, refactor and
10+
generalise authentication (James Bell in \ghpr{285})
11+
\item Deprecate \code{excludeterm} (John in \ghpr{306})
12+
\item Correct example in README.md (Maxime Legrand in \ghpr{314})
13+
\item Correct \code{bds} man page (and code) (Michael Kerber, and
14+
John, in \ghpr{320})
15+
\item Add GitHub Actions continuous integration (Dirk in \ghpr{323})
16+
\item Remove bashisms detected by R CMD check (Dirk \ghpr{324})
17+
\item Switch vignette to minidown (Dirk in \ghpr{331})
18+
\item Switch unit tests framework to tinytest (Dirk in \ghpr{332})
19+
}
20+
}
21+
722
\section{Changes in Rblpapi version 0.3.10 (2019-04-02)}{
823
\itemize{
924
\item The \code{start.date} format for \code{bdh} now allows character

man/subscribe.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)