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.27.0
current_version = 0.28.0
commit = True
tag = False
message = chore: Bump version from {current_version} to {new_version}
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# History

## 0.28.0 (2024-02-26)

- (PR #606, 2024-02-14) fix: Add default value for missing codes in SII CTE Form 29
- (PR #607, 2024-02-19) chore: Bump cryptography from 41.0.7 to 42.0.2
- (PR #605, 2024-02-19) chore: Bump django from 3.2.23 to 3.2.24
- (PR #608, 2024-02-26) chore: Bump cryptography from 42.0.2 to 42.0.4

## 0.27.0 (2024-02-07)

- (PR #593, 2024-02-01) chore: Bump pydantic from 2.5.3 to 2.6.0
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ colorama==0.4.6
# via tox
coverage==7.4.1
# via -r requirements-dev.in
cryptography==41.0.7
cryptography==42.0.4
# via
# -c requirements.txt
# secretstorage
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Note: To install a package from a Git VCS repository, see the following example:
# git+https://github.com/example/example.git@example-vcs-ref#egg=example-pkg[foo,bar]==1.42.3

cryptography==41.0.7
cryptography==42.0.4
defusedxml==0.7.1
Django>=2.2.24
djangorestframework>=3.10.3,<3.15
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ certifi==2023.7.22
# via signxml
cffi==1.15.1
# via cryptography
cryptography==41.0.7
cryptography==42.0.4
# via
# -r requirements.in
# pyopenssl
# signxml
defusedxml==0.7.1
# via -r requirements.in
django==3.2.23
django==3.2.24
# via
# -r requirements.in
# djangorestframework
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.27.0'
__version__ = '0.28.0'
6 changes: 5 additions & 1 deletion src/cl_sii/data/cte/f29_datos_obj_missing_key_fixes.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
"glosa": {
"049": "(Desconocido)",
"098": "(Desconocido)",
"100": "(Desconocido)",
"103": "(Desconocido)",
"156": "BASE IMPTO.A74,T.V.",
"157": "RET..ART74,T.VAR",
"8020": "(Desconocido)"
},
"tipos": {
"049": "M",
"098": "M",
"098": "M",
"100": "M",
"103": "M",
"156": "M",
"157": "M",
"8020": "M"
Expand Down