Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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}
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
15 changes: 14 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -66,21 +68,32 @@ 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
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
Expand Down
2 changes: 1 addition & 1 deletion src/cl_sii/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

"""

__version__ = '0.61.0'
__version__ = '0.62.0'
Loading