From c6875244a89542267d3dd9daf69aa841b8dca36b Mon Sep 17 00:00:00 2001 From: crimsonknave Date: Mon, 23 Dec 2024 15:03:01 -0500 Subject: [PATCH 1/3] Update dependencies --- requirements.txt | 8 ++++---- requirements/requirements-dev.txt | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index bcefd77..7d94fbd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,11 +3,11 @@ # # - makefun # - pychoir -# - python-json-logger +# - python-json-logger>=3.1.0 # - requests # -certifi==2024.8.30 +certifi==2024.12.14 # via requests charset-normalizer==3.4.0 # via requests @@ -17,9 +17,9 @@ makefun==1.15.6 # via hatch.envs.default pychoir==0.0.27 # via hatch.envs.default -python-json-logger==3.2.0 +python-json-logger==3.2.1 # via hatch.envs.default requests==2.32.3 # via hatch.envs.default -urllib3==2.2.3 +urllib3==2.3.0 # via requests diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index f552d88..f6bcfd9 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -20,13 +20,13 @@ # - requests # -certifi==2024.8.30 +certifi==2024.12.14 # via requests cfgv==3.4.0 # via pre-commit charset-normalizer==3.4.0 # via requests -click==8.1.7 +click==8.1.8 # via mutmut coverage==7.6.9 # via @@ -83,7 +83,7 @@ pychoir==0.0.27 # via hatch.envs.dev pygments==2.18.0 # via rich -pyright==1.1.390 +pyright==1.1.391 # via hatch.envs.dev pytest==8.3.4 # via @@ -105,7 +105,7 @@ pytest-randomly==3.16.0 # via hatch.envs.dev python-dateutil==2.9.0.post0 # via freezegun -python-json-logger==3.2.0 +python-json-logger==3.2.1 # via hatch.envs.dev pyyaml==6.0.2 # via pre-commit @@ -117,7 +117,7 @@ requests-mock==1.12.1 # via hatch.envs.dev rich==13.9.4 # via textual -ruff==0.8.3 +ruff==0.8.4 # via hatch.envs.dev setproctitle==1.3.4 # via mutmut @@ -141,7 +141,7 @@ typing-extensions==4.12.2 # textual uc-micro-py==1.0.3 # via linkify-it-py -urllib3==2.2.3 +urllib3==2.3.0 # via requests virtualenv==20.28.0 # via pre-commit From d10840ec599ae4795705c758b737391d607e6fa7 Mon Sep 17 00:00:00 2001 From: crimsonknave Date: Mon, 23 Dec 2024 15:04:11 -0500 Subject: [PATCH 2/3] Bump version --- annotated_logger/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotated_logger/__init__.py b/annotated_logger/__init__.py index 6a8bf8d..8608b13 100644 --- a/annotated_logger/__init__.py +++ b/annotated_logger/__init__.py @@ -34,7 +34,7 @@ # https://test.pypi.org/project/annotated-logger/ # The dev versions in testpypi can then be pulled in to whatever project needed # the new feature. -VERSION = "1.2.2" # pragma: no mutate +VERSION = "1.2.3" # pragma: no mutate T = TypeVar("T") P = ParamSpec("P") From 1695543443400cbb6594839b959d112ffe15493c Mon Sep 17 00:00:00 2001 From: crimsonknave Date: Wed, 8 Jan 2025 12:27:19 -0500 Subject: [PATCH 3/3] Bump dependencies --- .pre-commit-config.yaml | 2 +- requirements.txt | 2 +- requirements/requirements-dev.txt | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 56164d5..4616e88 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.8.3 + rev: v0.8.6 hooks: # Run the linter. - id: ruff diff --git a/requirements.txt b/requirements.txt index 7d94fbd..d3e221f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ certifi==2024.12.14 # via requests -charset-normalizer==3.4.0 +charset-normalizer==3.4.1 # via requests idna==3.10 # via requests diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index f6bcfd9..ab08fdd 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -24,11 +24,11 @@ certifi==2024.12.14 # via requests cfgv==3.4.0 # via pre-commit -charset-normalizer==3.4.0 +charset-normalizer==3.4.1 # via requests click==8.1.8 # via mutmut -coverage==7.6.9 +coverage==7.6.10 # via # hatch.envs.dev # pytest-cov @@ -40,7 +40,7 @@ filelock==3.16.1 # via virtualenv freezegun==1.5.1 # via pytest-freezer -identify==2.6.3 +identify==2.6.5 # via pre-commit idna==3.10 # via requests @@ -81,7 +81,7 @@ pre-commit==4.0.1 # via hatch.envs.dev pychoir==0.0.27 # via hatch.envs.dev -pygments==2.18.0 +pygments==2.19.1 # via rich pyright==1.1.391 # via hatch.envs.dev @@ -117,7 +117,7 @@ requests-mock==1.12.1 # via hatch.envs.dev rich==13.9.4 # via textual -ruff==0.8.4 +ruff==0.8.6 # via hatch.envs.dev setproctitle==1.3.4 # via mutmut @@ -143,5 +143,5 @@ uc-micro-py==1.0.3 # via linkify-it-py urllib3==2.3.0 # via requests -virtualenv==20.28.0 +virtualenv==20.28.1 # via pre-commit