From 1accdfcea74043f56fabef72b164af1c2f0ff3d3 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Tue, 8 Jun 2021 15:29:56 +0200 Subject: [PATCH] Release bdebstrap 0.2.0 Signed-off-by: Benjamin Drung --- NEWS.md | 15 +++++++++++++++ setup.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index d5c358c..d197c2b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,18 @@ +bdebstrap 0.2.0 (2021-06-08) +============================ + +This release changes the default output verbosity to align with mmdebstrap. To +restore the previous default behavior, call bdebstrap with `--verbose`. + +* Fix `KeyError: 'target'` if no target was specified +* Fix passing `--target=-` ([Debian bug #989452](https://bugs.debian.org/989452)) +* Add `--silent` as alias for `--quiet` +* Align log levels with mmdebstrap ([Debian bug #989450](https://bugs.debian.org/989450)): + * Change the default log level from info to warning + * Add a `--verbose` option to change the log level to info again + * Pass down `--quiet` and `--debug` to mmdebstrap +* Fix `PermissionError` exception when clamping mtime + bdebstrap 0.1.2 (2021-05-27) ============================ diff --git a/setup.py b/setup.py index 1711189..7ba23ab 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run(self): setup( name="bdebstrap", - version="0.1.2", + version="0.2.0", description="Benjamin's multi-mirror Debian chroot creation tool", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",