From 400b51ad7b6def4ee1690d7a5c465309904887b8 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Thu, 27 Aug 2020 20:52:47 +0200 Subject: [PATCH] release 0.7.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ mmdebstrap | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68f1246..79ec7cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +0.7.0 +----------------- + + - the hook system (setup, extract, essential, customize and hook-dir) is made + public and is now a documented interface + - tarball is also created if the output is a named pipe or character special + - add --format option to control the output format independent of the output + filename or in cases where output is directed to stdout + - generate ext2 filesystems if output file ends with .ext2 or --format=ext2 + - add --skip option to prevent some automatic actions from being carried out + - implement dpkg-realpath in perl so that we don't need to run tar inside the + chroot anymore for modes other than fakechroot and proot + - add ready-to-use hook scripts for eatmydata, merged-usr and busybox + - add tarfilter tool + - use distro-info-data and debootstrap to help with suite name and keyring + discovery + - no longer needs to install twice when --depkgopt=path-exclude is given + - variant=custom and hooks can be used as a debootstrap wrapper + - use File::Find instead of "du" to avoid different results on different + filesystems + - many, many bugfixes and documentation enhancements + 0.6.1 (2020-03-08) ------------------ diff --git a/mmdebstrap b/mmdebstrap index 28bc589..74ffa1c 100755 --- a/mmdebstrap +++ b/mmdebstrap @@ -23,7 +23,7 @@ use strict; use warnings; -our $VERSION = '0.6.1'; +our $VERSION = '0.7.0'; use English; use Getopt::Long;