diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cf5b4fc..8f09418 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 commit = True tag = True message = 🔖 Bump version: {current_version} → {new_version} diff --git a/VERSION b/VERSION index bcab45a..81340c7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.3 +0.0.4 diff --git a/juditha/__init__.py b/juditha/__init__.py index 7b344f3..c0595c1 100644 --- a/juditha/__init__.py +++ b/juditha/__init__.py @@ -16,5 +16,5 @@ def classify(self, name: str) -> str | None: return self.store.classify(name) -__version__ = "0.0.3" +__version__ = "0.0.4" __all__ = ["lookup", "classify", "normalize"] diff --git a/pyproject.toml b/pyproject.toml index ea0c7b7..fb8fba1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "juditha" -version = "0.0.3" +version = "0.0.4" description = "A super-fast canonical name lookup service" authors = ["Simon Wörpel "] license = "GPL"