Skip to content

Commit 7571a26

Browse files
authored
release 0.3.9 (closes #290) (#291)
* release 0.3.9 * more URL updates needed bloomberglags no longer documents API
1 parent 1241bec commit 7571a26

File tree

7 files changed

+47
-17
lines changed

7 files changed

+47
-17
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
^inst/blp
88
src/Makevars$
99
.Rhistory
10+
^.*\.tar\.gz$

ChangeLog

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2019-02-21 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): New release 0.3.9
4+
5+
* vignettes/rblpapi-intro.Rmd (vignette): Updated (old) API download
6+
URL to new location
7+
* DESCRIPTION: Idem
8+
* README.md: Idem
9+
* configure: Idem
10+
11+
2019-02-20 Dirk Eddelbuettel <[email protected]>
12+
13+
* DESCRIPTION: Set 'StagedInstall: no' to accomidate R 3.6.0
14+
15+
* inst/NEWS.Rd: Updated (old) API download URL to new location
16+
117
2018-10-25 John Laing <[email protected]>
218

319
* DESCRIPTION (Date): Roll date
@@ -39,7 +55,8 @@
3955

4056
2018-01-20 Dirk Eddelbuettel <[email protected]>
4157

42-
* DESCRIPTION (Version, Date): New release 0.3.7
58+
* DESCRIPTION (Version, Date): New release 0.3.8
59+
(which should have been named 0.3.7)
4360

4461
2018-01-19 Whit Armstrong <[email protected]>
4562

DESCRIPTION

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
Package: Rblpapi
22
Title: R Interface to 'Bloomberg'
3-
Version: 0.3.8.1
4-
Date: 2018-10-25
3+
Version: 0.3.9.1
4+
Date: 2019-02-20
55
Maintainer: Dirk Eddelbuettel <[email protected]>
66
Author: Whit Armstrong, Dirk Eddelbuettel and John Laing
77
Imports: Rcpp (>= 0.11.0), utils
88
Suggests: fts, xts, zoo, data.table, knitr, RUnit
99
VignetteBuilder: knitr
1010
LazyLoad: yes
11+
StagedInstall: no
1112
LinkingTo: Rcpp, BH
1213
Description: An R Interface to 'Bloomberg' is provided via the 'Blp API'.
1314
SystemRequirements: A valid Bloomberg installation. The API headers and
14-
dynamic library are downloaded from <https://github.com/Rblp/blp> during
15-
the build step. See <https://bloomberg.github.io/blpapi-docs/cpp/3.8> as
16-
well as <http://www.bloomberglabs.com/api/> for API documentation. A
17-
compiler recent enough for (at least partial) C++11 support; g++-4.6.*
18-
or later should be sufficient and g++-4.9.* or later is preferred.
15+
dynamic library are downloaded from <https://github.com/Rblp/blp> during the
16+
build step. See <https://bloomberg.github.io/blpapi-docs/cpp/3.8> as well as
17+
<https://www.bloomberg.com/professional/support/api-library/> for API
18+
documentation. A compiler recent enough for (at least partial) C++11
19+
support is required; g++-4.6.* or later should be sufficient and g++-4.9.*
20+
or later is preferred.
1921
URL: http://dirk.eddelbuettel.com/code/rblpapi.html, https://github.com/Rblp/Rblpapi
2022
BugReports: https://github.com/Rblp/Rblpapi/issues
2123
License: file LICENSE

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ R Access to Bloomberg API
66
### Background
77

88
Rblpapi provides R with access to data and calculations from Bloomberg
9-
Finance L.P. via the [API libraries](https://www.bloomberglabs.com/api/libraries/) provided by
10-
Bloomberg at [Bloomberg Labs](https://www.bloomberglabs.com).
9+
Finance L.P. via the [API libraries](https://www.bloomberg.com/professional/support/api-library/) provided by
10+
Bloomberg.
1111

1212

1313
### Requirements

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ elif [ ${sysname} == "Darwin" ]; then
3636
platform="osx"
3737
else
3838
echo "Unsupported platform: $sysname"
39-
echo "Check http://www.bloomberglabs.com/api/libraries/ for possible support first."
39+
echo "Check https://www.bloomberg.com/professional/support/api-library/ for possible support first."
4040
echo "Contributions welcome, see https://github.com/Rblp/blp for integration with Rblapi."
4141
exit -1
4242
fi

inst/NEWS.Rd

+14-4
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.8 (2018-xx-yy)}{
7+
\section{Changes in Rblpapi version 0.3.10 (2019-xx-yy)}{
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
@@ -19,12 +19,21 @@
1919
}
2020
}
2121

22-
\section{Changes in Rblpapi version 0.3.7 (2018-01-20)}{
22+
\section{Changes in Rblpapi version 0.3.9 (2019-02-20)}{
2323
\itemize{
24+
\item Add 'StagedInstall: no' to DESCRIPTION to accomodate R 3.6.0.
25+
}
26+
}
27+
28+
\section{Changes in Rblpapi version 0.3.8 (2018-01-20)}{
29+
\itemize{
30+
\item This release should have been 0.3.7 but was accidentally
31+
tagged as 0.3.8 in the DESCRIPTION file so we skipped 0.3.7.
2432
\item The 140 day limit for intra-day data histories is now
2533
mentioned in the \code{getTicks} help (Dirk in \ghpr{226} addressing
2634
\ghit{215} and \ghit{225}).
27-
\item The Travis CI script was updated to use \code{run.sh} (Dirk in \ghpr{226}).
35+
\item The Travis CI script was updated to use \code{run.sh} (Dirk in
36+
\ghpr{226}).
2837
\item The \code{install_name_tool} invocation under macOS was
2938
corrected (@spennihana in \ghit{232})
3039
\item The \code{blpAuthenticate} help page has additional examples
@@ -156,6 +165,7 @@
156165
\item Build procedures rewritten so that required headers and
157166
libraries are downloaded during installation from corresponding GitHub
158167
repo \ghrepo{Rblp/blp} which contains custom tarballs derived from the
159-
corresponding upstream releases at \url{http://www.bloomberglabs.com/api}.
168+
corresponding upstream releases at
169+
\url{https://www.bloomberg.com/professional/support/api-library/ }.
160170
}
161171
}

vignettes/rblpapi-intro.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ vignette: >
1414
The [Rblpapi package](https://github.com/Rblp/Rblpapi) connects the
1515
[R language and environment for statistical computing](https://www.r-project.org)
1616
to the [Bloomberg](https://www.bloomberg.com) services supported by the
17-
[official Bloomberg APIs](https://www.bloomberglabs.com/api/).
17+
[official Bloomberg APIs](https://www.bloomberg.com/professional/support/api-library/).
1818

1919
The [Rblpapi package](https://github.com/Rblp/Rblpapi) is provided in both
2020
source and binary (for Windows and OS X) via the
@@ -146,7 +146,7 @@ directories `src/`, `R/`, ...) is released under the
146146

147147
All code retrieved from the [blp](https://github.com/Rblp/blp) repository
148148
during build is released by Bloomberg, available at the
149-
[BloombergLabs API](http://www.bloomberglabs.com/api/libraries/) site
149+
[Bloomberg API](https://www.bloomberg.com/professional/support/api-library/) site
150150
and released under the license included below.
151151

152152
```

0 commit comments

Comments
 (0)