Skip to content

Commit

Permalink
patch release to pin rjson version and update of installation instruc…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
danlu1 committed Aug 21, 2024
1 parent c7473c8 commit a3b25f8
Show file tree
Hide file tree
Showing 150 changed files with 428 additions and 410 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: synapser
Type: Package
Title: R Language Bindings for Synapse API
Version: 2.1.0
Date: 2024-07-31
Version: 2.1.1
Date: 2024-08-20
Authors@R: c(
person("Dan", "Lu", role = c("aut", "cre"), email = "[email protected]"),
person("Tom", "Yu", role = c("aut"), email = "[email protected]"),
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN R -e "install.packages('synapser', repos=c('http://ran.synapse.org', 'http://cran.fhcrc.org'))"
RUN R -e "install.packages('synapser', repos=c('http://ran.synapse.org', 'https://cloud.r-project.org'))"
2 changes: 1 addition & 1 deletion Dockerfile.rstudio
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ RUN apt-get update && \
# Must install synapser as rstudio since we are relying on
# the rstudio user to login
USER rstudio
RUN R -e "install.packages('synapser', repos=c('http://ran.synapse.org', 'http://cran.fhcrc.org'))"
RUN R -e "install.packages('synapser', repos=c('http://ran.synapse.org', 'https://cloud.r-project.org'))"
# when starting the container, it must run as root
USER root
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## synapser 2.1.1

### Improvements
* Pinned `rjson` package version to 0.2.21 to support R versions older than 4.4.0.

## synapser 2.1.0

### Improvements
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ adding the [Sage Bionetworks R Archive Network (RAN)](http://ran.synapse.org/) t
repository list, e.g.:

```{r, eval=F}
install.packages("synapser", repos=c("http://ran.synapse.org", "http://cran.fhcrc.org"))
install.packages("synapser", repos=c("http://ran.synapse.org", "https://cloud.r-project.org"))
```

Alternatively, edit your ~/.Rprofile and configure your default repositories:

```{r, eval=F}
options(repos=c("http://ran.synapse.org", "http://cran.fhcrc.org"))
options(repos=c("http://ran.synapse.org", "https://cloud.r-project.org"))
```

after which you may run install.packages without specifying the repositories:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ repository list, e.g.:


```r
install.packages("synapser", repos=c("http://ran.synapse.org", "http://cran.fhcrc.org"))
install.packages("synapser", repos=c("http://ran.synapse.org", "https://cloud.r-project.org"))
```

Alternatively, edit your ~/.Rprofile and configure your default repositories:


```r
options(repos=c("http://ran.synapse.org", "http://cran.fhcrc.org"))
options(repos=c("http://ran.synapse.org", "https://cloud.r-project.org"))
```

after which you may run install.packages without specifying the repositories:
Expand Down
4 changes: 2 additions & 2 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/ISSUE_TEMPLATE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/articles/docker.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions docs/articles/installation.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/manageSynapseCredentials.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a3b25f8

Please sign in to comment.