From 1fb1f806b13ae474056e194d1e046c17f4b5b42f Mon Sep 17 00:00:00 2001 From: David Trudgian Date: Tue, 17 Sep 2019 15:06:31 -0500 Subject: [PATCH 1/2] 3.4.1 changelog entries --- CHANGELOG.md | 14 +++++++++++++- INSTALL.md | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e2106634f..4b145d55ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/INSTALL.md b/INSTALL.md index a4adde790b..73c76fdf77 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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 @@ -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 && \ From f22c87053e04351646a6a2005cf3bfa3b25164d0 Mon Sep 17 00:00:00 2001 From: David Trudgian Date: Tue, 17 Sep 2019 16:40:43 -0500 Subject: [PATCH 2/2] Bump INSTALL.md go version --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 73c76fdf77..1b2699d08d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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