Skip to content

Commit 5d9975e

Browse files
authored
Merge pull request #4478 from dctrud/3.4.1-changelog
3.4.1 changelog entries / install version changes
2 parents b6f2b28 + f22c870 commit 5d9975e

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,19 @@ _With the release of `v3.0.0`, we're introducing a new changelog format in an at
99

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

12-
# Changes Since v3.4.0
12+
# Changes Since v3.4.1
13+
14+
# v3.4.1 - [2019.09.17]
15+
16+
- This point release addresses the following issues:
17+
- Fixes an issue where a PID namespace was always being used
18+
- Fixes compilation on non 64-bit architectures
19+
- Allows fakeroot builds for zypper, pacstrap, and debootstrap
20+
- Correctly detects seccomp on OpenSUSE
21+
- Honors GO_MODFLAGS properly in the mconfig generated makefile
22+
- Passes the Mac hostname to the VM in MacOS Singularity builds
23+
- Handles temporary EAGAIN failures when setting up loop devices on recent kernels
24+
- Fixes excessive memory usage in singularity push
1325

1426
# v3.4.0 - [2019.08.30]
1527

INSTALL.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This is one of several ways to [install and configure golang](https://golang.org
3636
First, download the Golang archive to `/tmp/`, then extract the archive to `/usr/local`.
3737

3838
```
39-
$ export VERSION=1.12.6 OS=linux ARCH=amd64 # change this as you need
39+
$ export VERSION=1.12.9 OS=linux ARCH=amd64 # change this as you need
4040
4141
$ wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz && \
4242
sudo tar -C /usr/local -xzf /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz
@@ -85,7 +85,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
8585
To build a stable version of Singularity, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:
8686

8787
```
88-
$ git checkout v3.4.0
88+
$ git checkout v3.4.1
8989
```
9090

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

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

0 commit comments

Comments
 (0)