diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d0989fd4..84eb193e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.41.0 +current_version = 0.42.0 commit = True tag = False message = chore: Bump version from {current_version} to {new_version} diff --git a/HISTORY.md b/HISTORY.md index e63022db..dc7bab8d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,12 @@ # History +## 0.42.0 (2025-01-28) + +- (PR #758, 2025-01-15) Enable `warn_unused_ignores` in Mypy configuration +- (PR #759, 2025-01-28) Annotate method return types with `typing.Self` where appropriate +- (PR #761, 2025-01-28) deps: Increase minimum version of Python package `Django` to 4.2 +- (PR #760, 2025-01-28) rut: Add constant with lowest RUT for personas jurídicas + ## 0.41.0 (2025-01-08) - (PR #753, 2025-01-08) Exclude only individual test files in Mypy configuration diff --git a/src/cl_sii/__init__.py b/src/cl_sii/__init__.py index 89c02ee8..32c7673e 100644 --- a/src/cl_sii/__init__.py +++ b/src/cl_sii/__init__.py @@ -4,4 +4,4 @@ """ -__version__ = '0.41.0' +__version__ = '0.42.0'