Skip to content

Commit

Permalink
bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Kaczmarzyk committed Apr 18, 2019
1 parent f1dc55d commit 27d9686
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ _Neurodocker_ is a command-line program that generates custom Dockerfiles and Si
Use the _Neurodocker_ Docker image (recommended):

```shell
$ docker run --rm kaczmarj/neurodocker:0.4.3 --help
$ docker run --rm kaczmarj/neurodocker:0.5.0 --help
```

_Note_: Do not use the `-t/--tty` flag with `docker run` or non-printable characters will be a part of the output (see [moby/moby#8513 (comment)](https://github.com/moby/moby/issues/8513#issuecomment-216191236)).
Expand Down Expand Up @@ -234,11 +234,11 @@ _Note_: Do not use the `-t/--tty` flag with `docker run` or non-printable charac
### Docker

```shell
$ docker run --rm kaczmarj/neurodocker:0.4.3 generate docker \
$ docker run --rm kaczmarj/neurodocker:0.5.0 generate docker \
--base debian:stretch --pkg-manager apt --ants version=2.3.1

# Build image by piping Dockerfile to `docker build`
$ docker run --rm kaczmarj/neurodocker:0.4.3 generate docker \
$ docker run --rm kaczmarj/neurodocker:0.5.0 generate docker \
--base debian:stretch --pkg-manager apt --ants version=2.3.1 | docker build -
```

Expand All @@ -247,7 +247,7 @@ $ docker run --rm kaczmarj/neurodocker:0.4.3 generate docker \
Install ANTs on Debian 9 (Stretch).

```shell
$ docker run --rm kaczmarj/neurodocker:0.4.3 generate singularity \
$ docker run --rm kaczmarj/neurodocker:0.5.0 generate singularity \
--base debian:stretch --pkg-manager apt --ants version=2.3.1
```

Expand Down
2 changes: 1 addition & 1 deletion neurodocker/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Copied from https://github.com/nipy/nipype/blob/master/nipype/info.py.
"""

__version__ = '0.4.4-dev'
__version__ = '0.5.0'


def get_gitversion():
Expand Down

0 comments on commit 27d9686

Please sign in to comment.