Skip to content

Commit

Permalink
Release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
3XX0 committed Jun 30, 2020
1 parent 393ba41 commit 1922cbf
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LIBDIR = $(DESTDIR)$(libdir)/enroot
SYSCONFDIR = $(DESTDIR)$(sysconfdir)/enroot
DATADIR = $(DESTDIR)$(datadir)/enroot

VERSION := 3.0.2
VERSION := 3.1.0
PACKAGE ?= enroot
ARCH ?= $(shell uname -m)
DEBUG ?=
Expand Down
2 changes: 1 addition & 1 deletion doc/cmd/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Print the release version of Enroot.

```sh
$ enroot version
3.0.2
3.1.0
```
16 changes: 8 additions & 8 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,31 +48,31 @@ The table below describes each package flavor and their characteristics:
```sh
# Debian-based distributions
arch=$(dpkg --print-architecture)
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot_3.0.2-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot+caps_3.0.2-1_${arch}.deb # optional
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot_3.1.0-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot+caps_3.1.0-1_${arch}.deb # optional
sudo apt install -y ./*.deb

# RHEL-based distributions
arch=$(uname -m)
sudo yum install -y epel-release # required on some distributions
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-3.0.2-1.el7.${arch}.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot+caps-3.0.2-1.el7.${arch}.rpm # optional
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-3.1.0-1.el7.${arch}.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot+caps-3.1.0-1.el7.${arch}.rpm # optional
```

#### Hardened flavor

```sh
# Debian-based distributions
arch=$(dpkg --print-architecture)
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-hardened_3.0.2-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-hardened+caps_3.0.2-1_${arch}.deb # optional
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-hardened_3.1.0-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-hardened+caps_3.1.0-1_${arch}.deb # optional
sudo apt install -y ./*.deb

# RHEL-based distributions
arch=$(uname -m)
sudo yum install -y epel-release # required on some distributions
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-hardened-3.0.2-1.el7.${arch}.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-hardened+caps-3.0.2-1.el7.${arch}.rpm # optional
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-hardened-3.1.0-1.el7.${arch}.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-hardened+caps-3.1.0-1.el7.${arch}.rpm # optional
```

## From source
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The list of prerequisites for running Enroot is described below.

You can automatically check these by running the `enroot-check` bundle for a given release:
```sh
$ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-check_3.0.2_$(uname -m).run
$ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0/enroot-check_3.1.0_$(uname -m).run
$ chmod +x enroot-check_*.run

$ ./enroot-check_*.run --verify
Expand Down
6 changes: 6 additions & 0 deletions pkg/deb/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#PACKAGE# (3.1.0-1) UNRELEASED; urgency=medium

* Release v3.1.0

-- #USERNAME# <#EMAIL#> Tue, 30 Jun 2020 21:17:26 +0000

#PACKAGE# (3.0.2-1) UNRELEASED; urgency=medium

* Release v3.0.2
Expand Down
3 changes: 3 additions & 0 deletions pkg/rpm/SPECS/enroot.spec
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ setcap cap_sys_admin,cap_mknod-pe "$(command -v enroot-aufs2ovlfs)"
%make_install prefix=%{_prefix} exec_prefix=%{_exec_prefix} libdir=%{_libdir} datarootdir=%{_datarootdir}

%changelog
* Tue Jun 30 2020 %{packager} 3.1.0-1
- Release v3.1.0

* Tue Apr 07 2020 %{packager} 3.0.2-1
- Release v3.0.2

Expand Down

0 comments on commit 1922cbf

Please sign in to comment.