Skip to content

Commit

Permalink
Release 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
3XX0 committed Feb 8, 2023
1 parent 17e3745 commit 4dd13f6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LIBDIR = $(DESTDIR)$(libdir)/enroot
SYSCONFDIR = $(DESTDIR)$(sysconfdir)/enroot
DATADIR = $(DESTDIR)$(datadir)/enroot

VERSION := 3.4.0
VERSION := 3.4.1
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.4.0
3.4.1
```
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.4.0/enroot_3.4.0-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot+caps_3.4.0-1_${arch}.deb # optional
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot_3.4.1-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot+caps_3.4.1-1_${arch}.deb # optional
sudo apt install -y ./*.deb

# RHEL-based distributions
arch=$(uname -m)
sudo dnf install -y epel-release # required on some distributions
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot-3.4.0-2.el7.${arch}.rpm
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot+caps-3.4.0-2.el7.${arch}.rpm # optional
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-3.4.1-1.el7.${arch}.rpm
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot+caps-3.4.1-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.4.0/enroot-hardened_3.4.0-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot-hardened+caps_3.4.0-1_${arch}.deb # optional
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-hardened_3.4.1-1_${arch}.deb
curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-hardened+caps_3.4.1-1_${arch}.deb # optional
sudo apt install -y ./*.deb

# RHEL-based distributions
arch=$(uname -m)
sudo dnf install -y epel-release # required on some distributions
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot-hardened-3.4.0-2.el7.${arch}.rpm
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.0/enroot-hardened+caps-3.4.0-2.el7.${arch}.rpm # optional
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-hardened-3.4.1-1.el7.${arch}.rpm
sudo dnf install -y https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-hardened+caps-3.4.1-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.4.0/enroot-check_3.4.0_$(uname -m).run
$ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.4.1/enroot-check_3.4.1_$(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.4.1-1) UNRELEASED; urgency=medium

* Release v3.4.1

-- #USERNAME# <#EMAIL#> Wed, 08 Feb 2023 07:01:13 +0000

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

* Release v3.4.0
Expand Down
5 changes: 4 additions & 1 deletion pkg/rpm/SPECS/enroot.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Name: %{PACKAGE}
Version: %{VERSION}
Release: 2%{?dist}
Release: 1%{?dist}
License: ASL 2.0
Vendor: %{USERNAME}
Packager: %{USERNAME} <%{EMAIL}>
Expand Down Expand Up @@ -58,6 +58,9 @@ allows them to import and convert container images directly.
%make_install prefix=%{_prefix} exec_prefix=%{_exec_prefix} libdir=%{_libdir} datarootdir=%{_datarootdir}

%changelog
* Wed Feb 08 2023 %{packager} 3.4.1-1
- Release v3.4.1

* Thu Nov 11 2021 %{packager} 3.4.0-2
- Fix scriplet ordering during package upgrade

Expand Down

0 comments on commit 4dd13f6

Please sign in to comment.