vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 1a1dc8cb166c0e01ac070e3fff0b4e18f64f5a11
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 12:40:28 2022 +0100
mini-dinstall: Ensure that the top-level directory is an absolute path
Using relative paths for `archivedir` is possible, but could lead to
hard-to-debug failures depenring on `$PWD`.
Address this by turning the path to the top-level directory of the
archive into an absolute path.
commit af3bff6382fe4c1ca97e1f8ce1a93ed37308e387
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 12:34:41 2022 +0100
mini-dinstall: Log mkdir errors instead of just printing them
The use of `print` to report errors occurred during the creation of
directories does not leave any trace in the logs, making post-facto
analysis of failures much harder.
Let's instead use the same logging mechanism used for other errors.
commit a19c44d563606ddbd11a82bd8e444461eb1582e4
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 11:39:22 2022 +0100
mini-dinstall: Avoid outdated `logger.warn`
Python 3 deprecated the `logger.warn` method:
```
DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead
```