Skip to content

Commit

Permalink
update metadata, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Aug 18, 2022
1 parent 583974f commit 27ce3b4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
11 changes: 8 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: babelwhale
Title: Talking to 'Docker' and 'Singularity' Containers
Version: 1.0.3
Version: 1.1.0
Authors@R:
c(person(given = "Robrecht",
family = "Cannoodt",
Expand All @@ -11,7 +11,12 @@ Authors@R:
family = "Saelens",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0002-7114-6248", github = "zouter")))
comment = c(ORCID = "0000-0002-7114-6248", github = "zouter")),
person(given = "Joel",
family = "Nitta",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4719-7472", github = "joelnitta")))
Description: Provides a unified interface to interact with
'docker' and 'singularity' containers. You can execute a command
inside a container, mount a volume or copy a file.
Expand All @@ -36,4 +41,4 @@ Suggests:
SystemRequirements: Docker and/or Singularity (>=3.0)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
RoxygenNote: 7.2.1
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# babelwhale 1.1.0

* NEW FUNCTIONALITY `run_auto_mount()`: Added helper function for letting `babelwhale` figure out which directories to mount automatically.
* NEW FUNCTIONALITY `run_auto_mount()`: Added helper function for letting `babelwhale` figure out which directories to mount automatically (#26, thanks @joelnitta!).

# babelwhale 1.0.3

Expand Down
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- badges: start -->

[![R-CMD-check](https://github.com/dynverse/babelwhale/workflows/R-CMD-check/badge.svg)](https://github.com/dynverse/babelwhale/actions)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/babelwhale)](https://cran.r-project.org/package=babelwhale)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/babelwhale)](https://cran.r-project.org/package=babelwhale)
[![Codecov test
coverage](https://codecov.io/gh/dynverse/babelwhale/branch/master/graph/badge.svg)](https://codecov.io/gh/dynverse/babelwhale?branch=master)
<!-- badges: end -->
Expand Down Expand Up @@ -41,7 +41,7 @@ Get a file from a container
read_file("alpine", "/etc/alpine-release")
```

## [1] "3.14.0"
## [1] "3.16.2"

## Latest changes

Expand All @@ -50,20 +50,13 @@ list of changes.

<!-- This section gets automatically generated from NEWS.md -->

### Recent changes in babelwhale 1.1.0

- NEW FUNCTIONALITY `run_auto_mount()`: Added helper function for
letting `babelwhale` figure out which directories to mount
automatically (#26, thanks @joelnitta!).

### Recent changes in babelwhale 1.0.3

- BUG FIX `detect_backend()`: Print helpful message when neither
docker or singularity are installed (Thanks @KforKuma).

### Recent changes in babelwhale 1.0.2

- BUG FIX `test_docker_installation()`: Use `docker info` to check
whether docker is available.

- BUG FIX: Redirect stdout and stderr to files to avoid processx hangs
(\#24, thanks @joelnitta!).

- MINOR CHANGE: Change maintainer from Wouter to Robrecht.

- MINOR CHANGE: Added an `environment_variables` to the singularity
and docker config.

0 comments on commit 27ce3b4

Please sign in to comment.