Skip to content

Commit

Permalink
bump to version 1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojmdavid committed Jan 24, 2023
1 parent af4550d commit 78444e5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## udocker (1.3.7)

* Remove deprecated unit tests. udocker is the same as version 1.3.6

## udocker (1.3.6)

* re-implement udocker namespace solves #380
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@type": "SoftwareSourceCode",
"identifier": "udocker",
"name": "udocker",
"version": "1.3.6",
"version": "1.3.7",
"description": "A basic user tool to execute simple docker containers in batch or interactive systems without root privileges",
"license": "Apache Software License 2.0, OSI Approved :: Apache Software License",
"author": [
Expand Down
18 changes: 9 additions & 9 deletions docs/installation_manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ udocker requires:
Download a release tarball from <https://github.com/indigo-dc/udocker/releases>:

```bash
wget https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz
tar zxvf udocker-1.3.6.tar.gz
export PATH=`pwd`/udocker-1.3.6/udocker:$PATH
wget https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz
tar zxvf udocker-1.3.7.tar.gz
export PATH=`pwd`/udocker-1.3.7/udocker:$PATH
```

Alternatively use `curl` instead of `wget` as follows:

```bash
curl -L https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz \
> udocker-1.3.6.tar.gz
tar zxvf udocker-1.3.6.tar.gz
export PATH=`pwd`/udocker-1.3.6/udocker:$PATH
curl -L https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz \
> udocker-1.3.7.tar.gz
tar zxvf udocker-1.3.7.tar.gz
export PATH=`pwd`/udocker-1.3.7/udocker:$PATH
```

udocker executes containers using external tools and libraries that
Expand Down Expand Up @@ -345,8 +345,8 @@ The udocker tool should be installed as shown in section 2.1:

```bash
cd /sw
wget https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz
tar zxvf udocker-1.3.6.tar.gz
wget https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz
tar zxvf udocker-1.3.7.tar.gz
```

Directing users to the central udocker installation can be done using the
Expand Down
2 changes: 1 addition & 1 deletion udocker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
"Singularity http://singularity.lbl.gov"
]
__license__ = "Licensed under the Apache License, Version 2.0"
__version__ = "1.3.6"
__version__ = "1.3.7"
__date__ = "2023"

0 comments on commit 78444e5

Please sign in to comment.