diff --git a/.bumpversion.cfg b/.bumpversion.cfg index db66902b..34ba068e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.61.0 +current_version = 0.62.0 commit = True tag = False message = chore: Bump version from {current_version} to {new_version} diff --git a/HISTORY.md b/HISTORY.md index 2efb2e29..8ef8b487 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ # History +## 0.62.0 (2025-10-29) + +- (PR #924, 2025-10-29) deps: Update `keyring` from 21.4.0 to 25.6.0 +- (PR #925, 2025-10-29) Fix Python package license metadata deprecations + ## 0.61.0 (2025-10-29) - (PR #916, 2025-10-29) Add support for Python 3.11 diff --git a/pyproject.toml b/pyproject.toml index 9aabaad9..36b0e76b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,12 +34,12 @@ authors = [ ] description = "Python library for Servicio de Impuestos Internos (SII) of Chile." readme = "README.md" -license = {text = "MIT"} +license = "MIT" +license-files = ["LICENSE"] classifiers = [ # See https://pypi.org/classifiers/ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", diff --git a/requirements-dev.txt b/requirements-dev.txt index 9a959d92..4f840a61 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,6 +8,8 @@ attrs==23.2.0 # via # -c requirements.txt # referencing +backports-tarfile==1.2.0 + # via jaraco-context beautifulsoup4==4.13.3 # via types-lxml black==25.9.0 @@ -66,14 +68,21 @@ importlib-metadata==8.7.0 # via # -c requirements.txt # build + # keyring # twine isort==6.0.1 # via -r requirements-dev.in +jaraco-classes==3.4.0 + # via keyring +jaraco-context==6.0.1 + # via keyring +jaraco-functools==4.3.0 + # via keyring jeepney==0.8.0 # via # keyring # secretstorage -keyring==21.4.0 +keyring==25.6.0 # via twine markdown-it-py==3.0.0 # via rich @@ -81,6 +90,10 @@ mccabe==0.7.0 # via flake8 mdurl==0.1.2 # via markdown-it-py +more-itertools==10.8.0 + # via + # jaraco-classes + # jaraco-functools mypy==1.18.2 # via -r requirements-dev.in mypy-extensions==1.0.0 diff --git a/src/cl_sii/__init__.py b/src/cl_sii/__init__.py index 748de295..24c05d68 100644 --- a/src/cl_sii/__init__.py +++ b/src/cl_sii/__init__.py @@ -4,4 +4,4 @@ """ -__version__ = '0.61.0' +__version__ = '0.62.0'