Skip to content

Commit 6604f44

Browse files
authored
Merge pull request #5788 from dtrudg/371changelog
Update README/INSTALL.md for 3.7.1 release
2 parents 513e276 + f40667a commit 6604f44

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _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.7.0
12+
# v3.7.1 - [2021-01-12]
1313

1414
## Bug Fixes
1515

INSTALL.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ $ sudo yum groupinstall -y 'Development Tools' && \
3030
squashfs-tools cryptsetup
3131
```
3232

33-
_NOTE:_ On CentOS/RHEL 6 or less, you may skip `libseccomp-devel`.
34-
3533
## Install Golang
3634

3735
This is one of several ways to [install and configure golang](https://golang.org/doc/install).
@@ -43,7 +41,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove `/u
4341
reinstalling it._
4442

4543
```
46-
$ export VERSION=1.14.12 OS=linux ARCH=amd64 # change this as you need
44+
$ export VERSION=1.15.6 OS=linux ARCH=amd64 # change this as you need
4745

4846
$ wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz && \
4947
sudo tar -C /usr/local -xzf /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz
@@ -92,7 +90,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
9290
To build a stable version of Singularity, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:
9391

9492
```
95-
$ git checkout v3.6.4
93+
$ git checkout v3.7.1
9694
```
9795

9896
## Compiling Singularity
@@ -135,7 +133,7 @@ as shown above. Then download the latest
135133
and use it to install the RPM like this:
136134

137135
```
138-
$ export VERSION=3.6.4 # this is the singularity version, change as you need
136+
$ export VERSION=3.7.1 # this is the singularity version, change as you need
139137

140138
$ wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
141139
rpmbuild -tb singularity-${VERSION}.tar.gz && \
@@ -151,7 +149,7 @@ tarball and use it to install Singularity:
151149
$ cd $GOPATH/src/github.com/sylabs/singularity && \
152150
./mconfig && \
153151
make -C builddir rpm && \
154-
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.6.4*.x86_64.rpm # or whatever version you built
152+
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.7.1*.x86_64.rpm # or whatever version you built
155153
```
156154

157155
To build an rpm with an alternative install prefix set RPMPREFIX on the

0 commit comments

Comments
 (0)