Skip to content

Commit 2133153

Browse files
committed
Release v2.0.1
1 parent a5dd946 commit 2133153

File tree

6 files changed

+23
-14
lines changed

6 files changed

+23
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ USERNAME := NVIDIA CORPORATION
1717
EMAIL := cudatools@nvidia.com
1818

1919
PACKAGE ?= enroot
20-
VERSION := 2.0.0
20+
VERSION := 2.0.1
2121

2222
BIN := enroot
2323

doc/cmd/version.md

Lines changed: 1 addition & 1 deletion
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-
2.0.0
13+
2.0.1
1414
```

doc/installation.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,28 +47,28 @@ The table below describes each package flavor and their characteristics:
4747

4848
```sh
4949
# Debian-based distributions
50-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot_2.0.0-1_amd64.deb
51-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot+caps_2.0.0-1_amd64.deb # optional
50+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot_2.0.1-1_amd64.deb
51+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot+caps_2.0.1-1_amd64.deb # optional
5252
sudo apt install -y ./*.deb
5353

5454
# RHEL-based distributions
5555
sudo yum install -y epel-release # required on some distributions
56-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-2.0.0-1.el7.x86_64.rpm
57-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot+caps-2.0.0-1.el7.x86_64.rpm # optional
56+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-2.0.1-1.el7.x86_64.rpm
57+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot+caps-2.0.1-1.el7.x86_64.rpm # optional
5858
```
5959

6060
#### Hardened flavor
6161

6262
```sh
6363
# Debian-based distributions
64-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened_2.0.0-1_amd64.deb
65-
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened+caps_2.0.0-1_amd64.deb # optional
64+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened_2.0.1-1_amd64.deb
65+
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened+caps_2.0.1-1_amd64.deb # optional
6666
sudo apt install -y ./*.deb
6767

6868
# RHEL-based distributions
6969
sudo yum install -y epel-release # required on some distributions
70-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened-2.0.0-1.el7.x86_64.rpm
71-
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened+caps-2.0.0-1.el7.x86_64.rpm # optional
70+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened-2.0.1-1.el7.x86_64.rpm
71+
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened+caps-2.0.1-1.el7.x86_64.rpm # optional
7272
```
7373

7474
## From source

doc/requirements.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ 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/v2.0.0/enroot-check_2.0.0.run
8-
$ chmod +x enroot-check_2.0.0.run
7+
$ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-check_2.0.1.run
8+
$ chmod +x enroot-check_2.0.1.run
99

10-
$ ./enroot-check_2.0.0.run --verify
10+
$ ./enroot-check_2.0.1.run --verify
1111

12-
$ ./enroot-check_2.0.0.run
12+
$ ./enroot-check_2.0.1.run
1313
Bundle ran successfully!
1414
```
1515

pkg/deb/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#PACKAGE# (2.0.1-1) UNRELEASED; urgency=medium
2+
3+
* Release v2.0.1
4+
5+
-- #USERNAME# <#EMAIL#> Thu, 05 Sep 2019 21:30:56 +0000
6+
17
#PACKAGE# (2.0.0-1) UNRELEASED; urgency=medium
28

39
* Release v2.0.0

pkg/rpm/SPECS/enroot.spec

Lines changed: 3 additions & 0 deletions
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+
* Thu Sep 05 2019 %{packager} 2.0.1-1
62+
- Release v2.0.1
63+
6164
* Tue Aug 13 2019 %{packager} 2.0.0-1
6265
- Release v2.0.0
6366

0 commit comments

Comments
 (0)