Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
3XX0 committed Aug 13, 2019
1 parent e24220f commit a18f68a
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ USERNAME := NVIDIA CORPORATION
EMAIL := [email protected]

PACKAGE ?= enroot
VERSION := 1.1.0
VERSION := 2.0.0

BIN := enroot

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
1.1.0
2.0.0
```
16 changes: 8 additions & 8 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/v1.1.0/enroot_1.1.0-1_amd64.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v1.1.0/enroot+caps_1.1.0-1_amd64.deb # optional
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
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/v1.1.0/enroot-1.1.0-1.el7.x86_64.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v1.1.0/enroot+caps-1.1.0-1.el7.x86_64.rpm # optional
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
```

#### Hardened flavor

```sh
# Debian-based distributions
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v1.1.0/enroot-hardened_1.1.0-1_amd64.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v1.1.0/enroot-hardened+caps_1.1.0-1_amd64.deb # optional
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
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/v1.1.0/enroot-hardened-1.1.0-1.el7.x86_64.rpm
sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v1.1.0/enroot-hardened+caps-1.1.0-1.el7.x86_64.rpm # optional
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
```

## From source
Expand Down
8 changes: 4 additions & 4 deletions doc/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/v1.1.0/enroot-check_1.1.0.run
$ chmod +x enroot-check_1.1.0.run
$ 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

$ ./enroot-check_1.1.0.run --verify
$ ./enroot-check_2.0.0.run --verify

$ ./enroot-check_1.1.0.run
$ ./enroot-check_2.0.0.run
Bundle ran successfully!
```

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# (2.0.0-1) UNRELEASED; urgency=medium

* Release v2.0.0

-- #USERNAME# <#EMAIL#> Tue, 13 Aug 2019 22:35:08 +0000

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

* Release v1.1.0
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 Aug 13 2019 %{packager} 2.0.0-1
- Release v2.0.0

* Mon Jun 03 2019 %{packager} 1.1.0-1
- Release v1.1.0

Expand Down

0 comments on commit a18f68a

Please sign in to comment.