Skip to content

Commit 60cfadb

Browse files
authored
3.2.1 (#42)
* 3.2.1
1 parent f59f537 commit 60cfadb

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Version number changes (major.minor.micro) in this package denote the following:
88
- A minor version will increase if one or more packages contained in the Docker image add new, backwards-compatible features, or if a new package is added to the Docker image.
99
- A major version will increase if there are any backwards-incompatible changes in any of the packages contained in this Docker image, or any other backwards-incompabile changes in the execution environment.
1010

11+
## [3.2.1] - 2020-02-24
12+
13+
- civis-r -> 2.1.2
14+
1115
## [3.2.0] - 2019-12-20
1216

1317
- rocker/verse -> 3.6.1

Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ RUN curl -s https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
2323
rm -rf ~/.cache/pip && \
2424
rm -f get-pip.py
2525

26-
RUN Rscript -e "devtools::install_github('civisanalytics/civis-r', ref = 'v2.1.0', upgrade_dependencies = FALSE);"
26+
# set cran to be default backup to set MRAN repo
27+
#RUN echo "options(repos = c(options('repos'), 'https://cran.rstudio.com/'), download.file.method = 'libcurl')" >> /usr/local/lib/R/etc/Rprofile.site
28+
29+
RUN Rscript -e "devtools::install_github('civisanalytics/civis-r', ref = 'v2.1.2');"
2730

2831
COPY ./requirements.txt /requirements.txt
2932
RUN Rscript -e 'install.packages(readLines("requirements.txt"))'
3033

3134
RUN Rscript -e "library(civis)"
3235

33-
ENV VERSION=3.2.0 \
36+
ENV VERSION=3.2.1 \
3437
VERSION_MAJOR=3 \
3538
VERSION_MINOR=2 \
36-
VERSION_MICRO=0
39+
VERSION_MICRO=1

0 commit comments

Comments
 (0)