diff --git a/hb/main.py b/hb/main.py index f470b9b..ec37e2b 100644 --- a/hb/main.py +++ b/hb/main.py @@ -17,7 +17,7 @@ class Checksum(): Digest, hash, and checksum are all referred to as checksum for simplicity. """ SUPPORTED = ("blake2b", "blake2s", "md5", "sha1", "sha224", "sha256", "sha384", "sha512", "adler32", "crc32") - VERSION = "1.4.1" + VERSION = "1.4.2" @staticmethod def parse(path: str) -> List[Tuple[str, ...]]: diff --git a/poetry.lock b/poetry.lock index 88db669..8cd042e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -68,9 +68,8 @@ coverage = "*" requests = ">=2.7.9" [[package]] -category = "dev" +category = "main" description = "Cross-platform colored terminal text." -marker = "sys_platform == \"win32\"" name = "colorama" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" @@ -241,7 +240,7 @@ python-versions = "*" version = "1.10.11" [metadata] -content-hash = "b2d8757837a197231e660cd697dea0584fe17e5e129023ee926e60a805086b9b" +content-hash = "ef7ed9625ca7fc1a50017fa99d10a122e42e5db45deb2a08023cf31354c6e6c4" python-versions = "^3.6" [metadata.hashes] diff --git a/pyproject.toml b/pyproject.toml index ba4c0fc..9736cc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hb" -version = "1.4.1" +version = "1.4.2" description = "A simple command-line utility for calculating checksums." license = "MIT" authors = ["Ching Chow "] @@ -32,6 +32,7 @@ hb = "hb.cli:cli" [tool.poetry.dependencies] python = "^3.6" click = "^7.0" +colorama = "^0.4.0" [tool.poetry.dev-dependencies] codecov = "^2.0"