publish 2.3.0

This commit is contained in:
Christian Zangl 2023-01-09 22:38:39 +01:00
parent 54013bc344
commit 3ec18ba976
No known key found for this signature in database
GPG Key ID: 6D468AC36E2A4B3D
2 changed files with 13 additions and 12 deletions

View File

@ -45,22 +45,23 @@ chkbit will
Run `chkbit PATH` to verify only.
```
usage: chkbit [-h] [-u] [--algo ALGO] [-f] [-i] [-w N] [-q] [-v] [PATH ...]
usage: chkbit.py [-h] [-u] [--algo ALGO] [-f] [-i] [-s] [-w N] [-q] [-v] [PATH ...]
Checks the data integrity of your files. See https://github.com/laktak/chkbit-py
positional arguments:
PATH directories to check
PATH directories to check
optional arguments:
-h, --help show this help message and exit
-u, --update update indices (without this chkbit will only verify files)
--algo ALGO hash algorithm: md5, sha512
-f, --force force update of damaged items
-i, --verify-index verify files in the index only (will not report new files)
-w N, --workers N number of workers to use, default=5
-q, --quiet quiet, don't show progress/information
-v, --verbose verbose output
options:
-h, --help show this help message and exit
-u, --update update indices (without this chkbit will only verify files)
--algo ALGO hash algorithm: md5, sha512
-f, --force force update of damaged items
-i, --verify-index verify files in the index only (will not report new files)
-s, --skip-symlinks do not follow symlinks
-w N, --workers N number of workers to use, default=5
-q, --quiet quiet, don't show progress/information
-v, --verbose verbose output
Status codes:
DMG: error, data damage detected

View File

@ -11,7 +11,7 @@ with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
setup(
name="chkbit",
version="2.2.0",
version="2.3.0",
url="https://github.com/laktak/chkbit-py",
author="Christian Zangl",
author_email="laktak@cdak.net",