Skip to content

Commit

Permalink
Merge pull request #4478 from dctrud/3.4.1-changelog
Browse files Browse the repository at this point in the history
3.4.1 changelog entries / install version changes
  • Loading branch information
dtrudg authored Sep 18, 2019
2 parents b6f2b28 + f22c870 commit 5d9975e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@ _With the release of `v3.0.0`, we're introducing a new changelog format in an at

_The old changelog can be found in the `release-2.6` branch_

# Changes Since v3.4.0
# Changes Since v3.4.1

# v3.4.1 - [2019.09.17]

- This point release addresses the following issues:
- Fixes an issue where a PID namespace was always being used
- Fixes compilation on non 64-bit architectures
- Allows fakeroot builds for zypper, pacstrap, and debootstrap
- Correctly detects seccomp on OpenSUSE
- Honors GO_MODFLAGS properly in the mconfig generated makefile
- Passes the Mac hostname to the VM in MacOS Singularity builds
- Handles temporary EAGAIN failures when setting up loop devices on recent kernels
- Fixes excessive memory usage in singularity push

# v3.4.0 - [2019.08.30]

Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This is one of several ways to [install and configure golang](https://golang.org
First, download the Golang archive to `/tmp/`, then extract the archive to `/usr/local`.

```
$ export VERSION=1.12.6 OS=linux ARCH=amd64 # change this as you need
$ export VERSION=1.12.9 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 && \
sudo tar -C /usr/local -xzf /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz
Expand Down Expand Up @@ -85,7 +85,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
To build a stable version of Singularity, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:

```
$ git checkout v3.4.0
$ git checkout v3.4.1
```

## Compiling Singularity
Expand Down Expand Up @@ -128,7 +128,7 @@ as shown above. Then download the latest
and use it to install the RPM like this:

```
$ export VERSION=3.4.0 # this is the singularity version, change as you need
$ export VERSION=3.4.1 # this is the singularity version, change as you need
$ wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
rpmbuild -tb singularity-${VERSION}.tar.gz && \
Expand Down

0 comments on commit 5d9975e

Please sign in to comment.