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.52.0
current_version = 0.53.0
commit = True
tag = False
message = chore: Bump version from {current_version} to {new_version}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set Up Python ${{ matrix.python_version }}
id: set_up_python
Expand All @@ -46,7 +46,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: |
.tox
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set Up Python ${{ matrix.python_version }}
id: set_up_python
Expand All @@ -98,7 +98,7 @@ jobs:
check-latest: true

- name: Restoring/Saving Cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: |
.tox
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
make test-coverage-report

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./test-reports/coverage/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Dependency Review
uses: actions/dependency-review-action@v4.7.1
uses: actions/dependency-review-action@v4.7.3
with:
fail-on-severity: critical
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set Up Python
id: set_up_python
Expand All @@ -47,13 +47,13 @@ jobs:
python-version: "3.10"

- name: Restoring/Saving Cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements.txt', 'requirements-dev.txt', 'Makefile', 'make/**.mk') }}

- name: Restore Artifacts (Release)
uses: actions/download-artifact@v4.3.0
uses: actions/download-artifact@v5.0.0
with:
name: release
path: ${{ inputs.artifacts_path }}/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set Up Python
id: set_up_python
Expand All @@ -47,7 +47,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements.txt', 'requirements-dev.txt', 'Makefile', 'make/**.mk') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/task-release-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0
with:
ref: ${{ env.CREATE_RELEASE_VCS_REVISION_ID }}

Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# History

## 0.53.0 (2025-09-02)

- (PR #862, 2025-08-28) chore(deps): Bump the github-actions-production group with 5 updates
- (PR #864, 2025-08-28) rcv: Expand "RCV Compras" CSV schemas and update field mappings
- (PR #867, 2025-09-02) rcv: Update RCV CSV typing and RCV Ventas preprocessing

## 0.52.0 (2025-08-28)

- (PR #850, 2025-08-21) chore(deps): Bump the python-development group across 1 directory with 6 updates
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.52.0'
__version__ = '0.53.0'
Loading
Loading