Skip to content

Commit fa7086d

Browse files
committed
Release v3.0.2
1 parent 1e075ef commit fa7086d

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LIBDIR = $(DESTDIR)$(libdir)/enroot
1212
SYSCONFDIR = $(DESTDIR)$(sysconfdir)/enroot
1313
DATADIR = $(DESTDIR)$(datadir)/enroot
1414

15-
VERSION := 3.0.1
15+
VERSION := 3.0.2
1616
PACKAGE ?= enroot
1717
ARCH ?= $(shell uname -m)
1818
DEBUG ?=

doc/cmd/version.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Print the release version of Enroot.
1010

1111
```sh
1212
$ enroot version
13-
3.0.1
13+
3.0.2
1414
```

doc/installation.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,31 @@ The table below describes each package flavor and their characteristics:
4848
```sh
4949
# Debian-based distributions
5050
arch=$(dpkg --print-architecture)
51-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot_3.0.1-1_${arch}.deb
52-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot+caps_3.0.1-1_${arch}.deb # optional
51+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot_3.0.2-1_${arch}.deb
52+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot+caps_3.0.2-1_${arch}.deb # optional
5353
sudo apt install -y ./*.deb
5454

5555
# RHEL-based distributions
5656
arch=$(uname -m)
5757
sudo yum install -y epel-release # required on some distributions
58-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot-3.0.1-1.el7.${arch}.rpm
59-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot+caps-3.0.1-1.el7.${arch}.rpm # optional
58+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-3.0.2-1.el7.${arch}.rpm
59+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot+caps-3.0.2-1.el7.${arch}.rpm # optional
6060
```
6161

6262
#### Hardened flavor
6363

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

7171
# RHEL-based distributions
7272
arch=$(uname -m)
7373
sudo yum install -y epel-release # required on some distributions
74-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot-hardened-3.0.1-1.el7.${arch}.rpm
75-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.1/enroot-hardened+caps-3.0.1-1.el7.${arch}.rpm # optional
74+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.0.2/enroot-hardened-3.0.2-1.el7.${arch}.rpm
75+
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
7676
```
7777

7878
## From source

doc/requirements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The list of prerequisites for running Enroot is described below.
44

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

1010
$ ./enroot-check_*.run --verify

pkg/deb/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#PACKAGE# (3.0.2-1) UNRELEASED; urgency=medium
2+
3+
* Release v3.0.2
4+
5+
-- #USERNAME# <#EMAIL#> Tue, 07 Apr 2020 06:49:53 +0000
6+
17
#PACKAGE# (3.0.1-1) UNRELEASED; urgency=medium
28

39
* Release v3.0.1

pkg/rpm/SPECS/enroot.spec

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ setcap cap_sys_admin,cap_mknod-pe "$(command -v enroot-aufs2ovlfs)"
5858
%make_install prefix=%{_prefix} exec_prefix=%{_exec_prefix} libdir=%{_libdir} datarootdir=%{_datarootdir}
5959

6060
%changelog
61+
* Tue Apr 07 2020 %{packager} 3.0.2-1
62+
- Release v3.0.2
63+
6164
* Fri Mar 13 2020 %{packager} 3.0.1-1
6265
- Release v3.0.1
6366

0 commit comments

Comments
 (0)