diff --git a/NEWS.md b/NEWS.md index d197c2b..3cf1e08 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,16 @@ +bdebstrap 0.3.0 (2021-11-08) +============================ + +* Fix issues found by pylint 2.11.1 + (fixes [Debian bug #998591](https://bugs.debian.org/998591)): + * tests: Use `with for subprocess.Popen` calls + * Save YAML configuration files explicitly as UTF-8 + * Replace `.format()` with f-strings +* Make YAML files free of complaints from yamllint +* Produce YAML files that are yamllint clean +* Add example configurations for Raspberry Pis (version 3 and Zero W) +* Set root password for Debian live example to `debian` + bdebstrap 0.2.0 (2021-06-08) ============================ diff --git a/setup.py b/setup.py index 4fac219..9d8a680 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run(self): setup( name="bdebstrap", - version="0.2.0", + version="0.3.0", description="Benjamin's multi-mirror Debian chroot creation tool", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",