Skip to content

Commit

Permalink
Merge pull request #403 from indigo-dc/devel3
Browse files Browse the repository at this point in the history
bump to version 1.3.12
  • Loading branch information
mariojmdavid authored Nov 2, 2023
2 parents 7c660a6 + e5c0651 commit 7e8160c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 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.12)

* fix units tests, no modifications w.r.t. 1.3.11

## udocker (1.3.11)

* add support for hard link to symbolic link conversion in Pn modes
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.11",
"version": "1.3.12",
"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.11/udocker-1.3.11.tar.gz
tar zxvf udocker-1.3.11.tar.gz
export PATH=`pwd`/udocker-1.3.11/udocker:$PATH
wget https://github.com/indigo-dc/udocker/releases/download/1.3.12/udocker-1.3.12.tar.gz
tar zxvf udocker-1.3.12.tar.gz
export PATH=`pwd`/udocker-1.3.12/udocker:$PATH
```

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

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

udocker executes containers using external tools and libraries that
Expand Down Expand Up @@ -353,8 +353,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.11/udocker-1.3.11.tar.gz
tar zxvf udocker-1.3.11.tar.gz
wget https://github.com/indigo-dc/udocker/releases/download/1.3.12/udocker-1.3.12.tar.gz
tar zxvf udocker-1.3.12.tar.gz
```

Directing users to the central udocker installation can be done using the
Expand Down
2 changes: 1 addition & 1 deletion docs/udocker.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\" Manpage for udocker
.\" Contact [email protected] to correct errors or typos.
.\" To read this man page use: man -l udocker.1
.TH udocker 1 "31 Oct 2023" "version 1.3.11" "udocker man page"
.TH udocker 1 "2 Nov 2023" "version 1.3.12" "udocker man page"
.SH NAME
udocker \- execute Docker containers in user space without privileges
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion udocker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
"Singularity http://singularity.lbl.gov"
]
__license__ = "Licensed under the Apache License, Version 2.0"
__version__ = "1.3.11"
__version__ = "1.3.12"
__date__ = "2023"

0 comments on commit 7e8160c

Please sign in to comment.