diff --git a/pyproject.toml b/pyproject.toml index 79730c7..3630e5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,12 @@ build-backend = "hatchling.build" [project] name = "imshow" -version = "0.1.4" +# Semantic Versioning 2.0.0: https://semver.org/ +# 1. MAJOR version when you make incompatible API changes; +# 2. MINOR version when you add functionality in a backwards-compatible manner; +# 3. PATCH version when you make backwards-compatible bug fixes. +# e.g., 1.0.0a0, 1.0.0a1, 1.0.0b0, 1.0.0rc0, 1.0.0, 1.0.0.post0 +version = "0.1.4.post0" description = "The flexible image display." license = { text = "MIT" } requires-python = ">=3.8"