diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a65fd04..a617f7c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,10 @@ repos: - repo: https://github.com/psf/black - rev: 23.12.0 + rev: 23.12.1 hooks: - id: black - repo: https://github.com/pycqa/flake8 - rev: 6.1.0 + rev: 7.0.0 hooks: - id: flake8 - repo: https://github.com/pycqa/isort diff --git a/case_utils/__init__.py b/case_utils/__init__.py index 27a73ff..898dacd 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -14,6 +14,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.14.1" +__version__ = "0.14.1.post0" from . import local_uuid # noqa: F401 diff --git a/case_utils/local_uuid.py b/case_utils/local_uuid.py index 9bc19e0..0d13706 100644 --- a/case_utils/local_uuid.py +++ b/case_utils/local_uuid.py @@ -20,7 +20,7 @@ The function local_uuid() should be used in code where a user could be expected to opt in to non-random UUIDs. """ -__version__ = "0.4.0" +__version__ = "0.4.1" __all__ = ["configure", "local_uuid"]