From 2133153898a0fda100355b6da68c435759f953c2 Mon Sep 17 00:00:00 2001 From: Jonathan Calmels Date: Thu, 5 Sep 2019 14:34:56 -0700 Subject: [PATCH] Release v2.0.1 --- Makefile | 2 +- doc/cmd/version.md | 2 +- doc/installation.md | 16 ++++++++-------- doc/requirements.md | 8 ++++---- pkg/deb/changelog | 6 ++++++ pkg/rpm/SPECS/enroot.spec | 3 +++ 6 files changed, 23 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index e6ae3a3..3ace75f 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ USERNAME := NVIDIA CORPORATION EMAIL := cudatools@nvidia.com PACKAGE ?= enroot -VERSION := 2.0.0 +VERSION := 2.0.1 BIN := enroot diff --git a/doc/cmd/version.md b/doc/cmd/version.md index ca1c539..cede6b6 100644 --- a/doc/cmd/version.md +++ b/doc/cmd/version.md @@ -10,5 +10,5 @@ Print the release version of Enroot. ```sh $ enroot version -2.0.0 +2.0.1 ``` diff --git a/doc/installation.md b/doc/installation.md index a954a70..718784e 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -47,28 +47,28 @@ The table below describes each package flavor and their characteristics: ```sh # Debian-based distributions -curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot_2.0.0-1_amd64.deb -curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot+caps_2.0.0-1_amd64.deb # optional +curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot_2.0.1-1_amd64.deb +curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot+caps_2.0.1-1_amd64.deb # optional sudo apt install -y ./*.deb # RHEL-based distributions sudo yum install -y epel-release # required on some distributions -sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-2.0.0-1.el7.x86_64.rpm -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 +sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-2.0.1-1.el7.x86_64.rpm +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 ``` #### Hardened flavor ```sh # Debian-based distributions -curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened_2.0.0-1_amd64.deb -curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened+caps_2.0.0-1_amd64.deb # optional +curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened_2.0.1-1_amd64.deb +curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened+caps_2.0.1-1_amd64.deb # optional sudo apt install -y ./*.deb # RHEL-based distributions sudo yum install -y epel-release # required on some distributions -sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.0/enroot-hardened-2.0.0-1.el7.x86_64.rpm -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 +sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-hardened-2.0.1-1.el7.x86_64.rpm +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 ``` ## From source diff --git a/doc/requirements.md b/doc/requirements.md index d8faffc..97e872f 100644 --- a/doc/requirements.md +++ b/doc/requirements.md @@ -4,12 +4,12 @@ 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/v2.0.0/enroot-check_2.0.0.run -$ chmod +x enroot-check_2.0.0.run +$ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v2.0.1/enroot-check_2.0.1.run +$ chmod +x enroot-check_2.0.1.run -$ ./enroot-check_2.0.0.run --verify +$ ./enroot-check_2.0.1.run --verify -$ ./enroot-check_2.0.0.run +$ ./enroot-check_2.0.1.run Bundle ran successfully! ``` diff --git a/pkg/deb/changelog b/pkg/deb/changelog index 7ed3c23..dd29c23 100644 --- a/pkg/deb/changelog +++ b/pkg/deb/changelog @@ -1,3 +1,9 @@ +#PACKAGE# (2.0.1-1) UNRELEASED; urgency=medium + + * Release v2.0.1 + + -- #USERNAME# <#EMAIL#> Thu, 05 Sep 2019 21:30:56 +0000 + #PACKAGE# (2.0.0-1) UNRELEASED; urgency=medium * Release v2.0.0 diff --git a/pkg/rpm/SPECS/enroot.spec b/pkg/rpm/SPECS/enroot.spec index 4c81d35..ac50d1d 100644 --- a/pkg/rpm/SPECS/enroot.spec +++ b/pkg/rpm/SPECS/enroot.spec @@ -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 +* Thu Sep 05 2019 %{packager} 2.0.1-1 +- Release v2.0.1 + * Tue Aug 13 2019 %{packager} 2.0.0-1 - Release v2.0.0