From e3219a5c8f3a7d7ec575242a41f52d35b8cc7531 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Sat, 23 Feb 2019 13:25:56 +0100 Subject: [PATCH] release 0.4.0 --- CHANGELOG.md | 14 ++++++++++++++ mmdebstrap | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de9873..7daf7cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +0.4.0 (2019-02-23) +------------------ + + - disable merged-usr + - add --verbose option that prints apt and dpkg output instead of progress + bars + - add --quiet/--silent options which print nothing on stderr + - add --debug option for even more output than with --verbose + - add some no-op options to make mmdebstrap a drop-in replacement for certain + debootstrap wrappers like sbuild-createchroot + - add --logfile option which outputs to a file what would otherwise be written + to stderr + - add --version option + 0.3.0 (2018-11-21) ------------------ diff --git a/mmdebstrap b/mmdebstrap index d8c7210..902c2bc 100755 --- a/mmdebstrap +++ b/mmdebstrap @@ -15,7 +15,7 @@ use strict; use warnings; -our $VERSION = '0.3.0'; +our $VERSION = '0.4.0'; use English; use Getopt::Long;