From 54d14a51b86ffdd26c2de164c121ce12d2ed8af1 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 8 Jan 2024 14:49:08 -0800 Subject: [PATCH 1/3] Run and apply pre-commit autoupdate No effects were observed on Make-managed files. Signed-off-by: Alex Nelson --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 603c5c261ac5612cb7d881bd3dc31e9ff6c4c57b Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 8 Jan 2024 14:50:01 -0800 Subject: [PATCH 2/3] Bump versions Signed-off-by: Alex Nelson --- case_utils/__init__.py | 2 +- case_utils/local_uuid.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/case_utils/__init__.py b/case_utils/__init__.py index 0c9a49e..865fe53 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -11,6 +11,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.8.1" +__version__ = "0.8.1.post0" from . import local_uuid # noqa: F401 diff --git a/case_utils/local_uuid.py b/case_utils/local_uuid.py index 5db3c00..a8dfedf 100644 --- a/case_utils/local_uuid.py +++ b/case_utils/local_uuid.py @@ -15,7 +15,7 @@ This library is a wrapper for uuid, provided to generate repeatable UUIDs if requested. """ -__version__ = "0.3.1" +__version__ = "0.3.2" import logging import os From c0061e97c55f263cbbe4081c9390ed933627e6d6 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 8 Jan 2024 14:54:30 -0800 Subject: [PATCH 3/3] Bump version Signed-off-by: Alex Nelson --- case_utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/case_utils/__init__.py b/case_utils/__init__.py index 9b97804..1f82528 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -11,6 +11,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.9.1" +__version__ = "0.9.1.post0" from . import local_uuid # noqa: F401