Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# SingularityCE Changelog

## Changes Since Last Release
## 3.11.5 \[2023-09-15\]

### Changed defaults / behaviours

- If commands that expect an image file are given an OCI-SIF image, an error
will be generated advising the user that this format is only supported in
versions 4.0 and up.

### Bug Fixes

Expand Down
10 changes: 5 additions & 5 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
`/usr/local/go` before reinstalling it._

```sh
export VERSION=1.20.5 OS=linux ARCH=amd64 # change this as you need
export VERSION=1.21.1 OS=linux ARCH=amd64 # change this as you need

wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz \
https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz
Expand Down Expand Up @@ -129,11 +129,11 @@ cd singularity
By default your clone will be on the `main` branch which is where development
of SingularityCE happens. To build a specific version of SingularityCE, check
out a [release tag](https://github.com/sylabs/singularity/tags) before
compiling. E.g. to build the 3.11.4 release, checkout the
`v3.11.4` tag:
compiling. E.g. to build the 3.11.5 release, checkout the
`v3.11.5` tag:

```sh
git checkout --recurse-submodules v3.11.4
git checkout --recurse-submodules v3.11.5
```

## Compiling SingularityCE
Expand Down Expand Up @@ -184,7 +184,7 @@ build and install the RPM like this:
<!-- markdownlint-disable MD013 -->

```sh
export VERSION=3.11.4 # this is the singularity version, change as you need
export VERSION=3.11.5 # this is the singularity version, change as you need

# Fetch the source
wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz
Expand Down