Skip to content

Commit 78444e5

Browse files
committed
bump to version 1.3.7
1 parent af4550d commit 78444e5

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## udocker (1.3.7)
4+
5+
* Remove deprecated unit tests. udocker is the same as version 1.3.6
6+
37
## udocker (1.3.6)
48

59
* re-implement udocker namespace solves #380

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"@type": "SoftwareSourceCode",
77
"identifier": "udocker",
88
"name": "udocker",
9-
"version": "1.3.6",
9+
"version": "1.3.7",
1010
"description": "A basic user tool to execute simple docker containers in batch or interactive systems without root privileges",
1111
"license": "Apache Software License 2.0, OSI Approved :: Apache Software License",
1212
"author": [

docs/installation_manual.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ udocker requires:
3232
Download a release tarball from <https://github.com/indigo-dc/udocker/releases>:
3333

3434
```bash
35-
wget https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz
36-
tar zxvf udocker-1.3.6.tar.gz
37-
export PATH=`pwd`/udocker-1.3.6/udocker:$PATH
35+
wget https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz
36+
tar zxvf udocker-1.3.7.tar.gz
37+
export PATH=`pwd`/udocker-1.3.7/udocker:$PATH
3838
```
3939

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

4242
```bash
43-
curl -L https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz \
44-
> udocker-1.3.6.tar.gz
45-
tar zxvf udocker-1.3.6.tar.gz
46-
export PATH=`pwd`/udocker-1.3.6/udocker:$PATH
43+
curl -L https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz \
44+
> udocker-1.3.7.tar.gz
45+
tar zxvf udocker-1.3.7.tar.gz
46+
export PATH=`pwd`/udocker-1.3.7/udocker:$PATH
4747
```
4848

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

346346
```bash
347347
cd /sw
348-
wget https://github.com/indigo-dc/udocker/releases/download/1.3.6/udocker-1.3.6.tar.gz
349-
tar zxvf udocker-1.3.6.tar.gz
348+
wget https://github.com/indigo-dc/udocker/releases/download/1.3.7/udocker-1.3.7.tar.gz
349+
tar zxvf udocker-1.3.7.tar.gz
350350
```
351351

352352
Directing users to the central udocker installation can be done using the

udocker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"Singularity http://singularity.lbl.gov"
3232
]
3333
__license__ = "Licensed under the Apache License, Version 2.0"
34-
__version__ = "1.3.6"
34+
__version__ = "1.3.7"
3535
__date__ = "2023"

0 commit comments

Comments
 (0)