diff --git a/NEWS.md b/NEWS.md index c5d57ad..22f88f1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,16 @@ +bdebstrap 0.7.0 (2024-08-01) +============================ + +* feat: change default YAML flow style to `False` + ([PR #11](https://github.com/bdrung/bdebstrap/pull/11)) +* setup.py: Address pylint 3.2.2 complains + ([bug #13](https://github.com/bdrung/bdebstrap/issues/13), + [Debian bug #1074516](https://bugs.debian.org/1074516) and + [#1074699](https://bugs.debian.org/1074699)) +* test: support skip running linters via `SKIP_LINTERS=1` environment variable +* fix(tests): Call pylint binary instead of the module +* feat: Add type annotations and check them with mypy + bdebstrap 0.6.1 (2024-03-01) ============================ diff --git a/setup.py b/setup.py index dcb9b70..cb96612 100755 --- a/setup.py +++ b/setup.py @@ -94,7 +94,7 @@ def run(self) -> None: setup( name="bdebstrap", - version="0.6.1", + version="0.7.0", description="Benjamin's multi-mirror Debian chroot creation tool", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",