From d846700f57d3ebe4013ec4010cffa28d342e85fd Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Wed, 12 Mar 2025 21:09:09 -0300 Subject: [PATCH 1/3] chore(deps): Update `packaging` from 24.1 to 24.2 - [Software Repository](https://pypi.org/project/packaging/24.2/) - [Release Notes](https://github.com/pypa/packaging/releases/tag/24.2) - [Changelog](https://github.com/pypa/packaging/blob/24.2/CHANGELOG.rst#242---2024-11-08) - [Commits](https://github.com/pypa/packaging/compare/24.1...24.2) `packaging` versions <24.2 cause the following error when running `twine check --strict dist/*`: > Checking `dist/cl_sii-0.43.0-py3-none-any.whl`: > ERROR InvalidDistribution: > Invalid distribution metadata: unrecognized or malformed field 'license-file' --- requirements-dev.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5bf91a91..e559bfc0 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -86,7 +86,7 @@ mypy-extensions==1.0.0 # via # black # mypy -packaging==24.1 +packaging==24.2 # via # -c requirements.txt # black diff --git a/requirements.txt b/requirements.txt index ade735bb..c4594dd5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -44,7 +44,7 @@ lxml==5.3.1 # signxml marshmallow==3.22.0 # via -r requirements.in -packaging==24.1 +packaging==24.2 # via marshmallow pycparser==2.22 # via cffi From 61d7c5646070bb6f3bee7948a5ff92251c156fa8 Mon Sep 17 00:00:00 2001 From: Felipe Pinto Date: Thu, 13 Mar 2025 11:13:31 -0300 Subject: [PATCH 2/3] chore: Update history for new version --- HISTORY.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 2fea1c3c..56d05788 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # History +## 0.44.0 (2025-03-13) + +- (PR #783, 2025-03-13) deps: Update `packaging` from 24.1 to 24.2 + ## 0.43.0 (2025-03-12) - (PR #764, 2025-01-28) Python dependency sync check is never executed in CI/CD workflow From ca56f46ff413b049ddadf1a38dd0dd853de8c53a Mon Sep 17 00:00:00 2001 From: Felipe Pinto Date: Thu, 13 Mar 2025 11:13:50 -0300 Subject: [PATCH 3/3] chore: Bump version from 0.43.0 to 0.44.0 --- .bumpversion.cfg | 2 +- src/cl_sii/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f19895a0..af5307f7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.43.0 +current_version = 0.44.0 commit = True tag = False message = chore: Bump version from {current_version} to {new_version} diff --git a/src/cl_sii/__init__.py b/src/cl_sii/__init__.py index 419e274d..262f0c5e 100644 --- a/src/cl_sii/__init__.py +++ b/src/cl_sii/__init__.py @@ -4,4 +4,4 @@ """ -__version__ = '0.43.0' +__version__ = '0.44.0'