Skip to content

Commit c2d4e48

Browse files
committed
release 0.3.10
prepared April 2, admitted to CRAN on April 7; no reason given for the delay the NOTE on StagedInstall was present in 0.3.9 too and was added at CRAN's request
1 parent 9b75403 commit c2d4e48

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

ChangeLog

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
1+
2019-04-02 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): New release 0.3.10
4+
5+
* README.md: Add dependencies badge
6+
17
2019-03-21 John Laing <[email protected]>
28

39
* R/blpConnect.R: Only resolve IP address in SAPI
410
* src/blpConnect.cpp: Streamlined connection code
511

612
2019-03-19 Alfred Kanzler <[email protected]>
7-
13+
814
* DESCRIPTION (Version, Date): Updated minor version
9-
15+
1016
* src/blpConnect.cpp: Added function to connect to bpipe with an appName
1117
* src/blpAuthenticate.cpp: Authenticate a bpipe connection
1218
* R/blpConnect.R: Added appName to argument list
1319
* R/blpAutheticate.R: If the uuid is missing tries to connect to bpipe
14-
20+
1521
2019-02-21 Dirk Eddelbuettel <[email protected]>
1622

1723
* DESCRIPTION (Version, Date): New release 0.3.9
@@ -24,7 +30,7 @@
2430

2531
2019-02-20 Dirk Eddelbuettel <[email protected]>
2632

27-
* DESCRIPTION: Set 'StagedInstall: no' to accomidate R 3.6.0
33+
* DESCRIPTION: Set 'StagedInstall: no' to accomodate R 3.6.0
2834

2935
* inst/NEWS.Rd: Updated (old) API download URL to new location
3036

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rblpapi
22
Title: R Interface to 'Bloomberg'
3-
Version: 0.3.9.2
4-
Date: 2019-03-21
3+
Version: 0.3.10
4+
Date: 2019-04-02
55
Maintainer: Dirk Eddelbuettel <[email protected]>
66
Author: Whit Armstrong, Dirk Eddelbuettel and John Laing
77
Imports: Rcpp (>= 0.11.0), utils

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## Rblpapi [![Build Status](https://travis-ci.org/Rblp/Rblpapi.svg)](https://travis-ci.org/Rblp/Rblpapi) [![Package-License](http://img.shields.io/badge/license-GPL--3-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-3.0.html) [![LibraryLicense](https://img.shields.io/badge/license-License.txt-yellow.svg?style=flat)](https://raw.githubusercontent.com/Rblp/Rblpapi/master/inst/License.txt) [![CRAN](http://www.r-pkg.org/badges/version/Rblpapi)](https://cran.r-project.org/package=Rblpapi) [![Downloads](http://cranlogs.r-pkg.org/badges/Rblpapi?color=brightgreen)](http://www.r-pkg.org/pkg/Rblpapi)
2+
## Rblpapi [![Build Status](https://travis-ci.org/Rblp/Rblpapi.svg)](https://travis-ci.org/Rblp/Rblpapi) [![Package-License](http://img.shields.io/badge/license-GPL--3-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-3.0.html) [![LibraryLicense](https://img.shields.io/badge/license-License.txt-yellow.svg?style=flat)](https://raw.githubusercontent.com/Rblp/Rblpapi/master/inst/License.txt) [![CRAN](http://www.r-pkg.org/badges/version/Rblpapi)](https://cran.r-project.org/package=Rblpapi) [![Dependencies](https://tinyverse.netlify.com/badge/Rblpapi)](https://cran.r-project.org/package=Rblpapi) [![Downloads](http://cranlogs.r-pkg.org/badges/Rblpapi?color=brightgreen)](http://www.r-pkg.org/pkg/Rblpapi)
33

44
R Access to Bloomberg API
55

inst/NEWS.Rd

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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.10 (2019-xx-yy)}{
7+
\section{Changes in Rblpapi version 0.3.10 (2019-04-02)}{
88
\itemize{
99
\item The \code{start.date} format for \code{bdh} now allows character
1010
values with relative date expressions (John in \ghpr{267}) fixing
@@ -16,6 +16,12 @@
1616
\item The file \code{src/init.c} is now redundant and removed as
1717
updated registration is in \code{src/RcppExports.cpp} (Davis Vaugh
1818
in \ghpr{275} fixing \ghit{274}).
19+
\item Returned strings are now marked as UTF-8 encoded (Xianying Tan in
20+
\ghpr{278})
21+
\item Date vectors are now initialized with NA (Xianying Tan in
22+
\ghpr{279} fixing an inssue introduced in \ghpr{273})
23+
\item Authentication for BPIPE is now supported (Alfred Kanzler in
24+
\ghpr{288} with assistance help from Dirk and John)
1925
}
2026
}
2127

src/Makevars.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ PKG_CPPFLAGS = -I../inst/include/ -I.
3333
PKG_LIBS = -l$(BBG_LIB) -L../inst/blp -Wl,-rpath,$(BBG_RPATH)
3434

3535
all: $(SHLIB)
36-
@if command -v install_name_tool; then echo "fixxing"; install_name_tool -change libblpapi3_64.so '@rpath@/libblpapi3_64.so' Rblpapi.so; fi
36+
@if command -v install_name_tool; then echo "fixing"; install_name_tool -change libblpapi3_64.so '@rpath@/libblpapi3_64.so' Rblpapi.so; fi

0 commit comments

Comments
 (0)