Skip to content

Commit b3703de

Browse files
committed
Release v1.3.20
1 parent f6b27af commit b3703de

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v3
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.14'
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
@@ -38,7 +38,7 @@ jobs:
3838
- name: Build package
3939
run: python -m build
4040
- name: Publish to PyPI
41-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
41+
uses: pypa/gh-action-pypi-publish@release/v1
4242
with:
4343
user: __token__
4444
password: ${{ secrets.PYPI_API_TOKEN }}
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Python
5252
uses: actions/setup-python@v2
5353
with:
54-
python-version: '3.13'
54+
python-version: '3.14'
5555
- name: Install Documentation dependencies
5656
run: |
5757
python -m pip install --upgrade pip

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v2
2323
with:
24-
python-version: '3.13'
24+
python-version: '3.14'
2525
- name: Install tests/lint dependencies
2626
run: |
2727
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Releases
22

3+
### v1.3.20 (2025-10-22)
4+
5+
- **Added:** Added: Support por Python 3.14.
6+
- **Changed:** Update Publish to PyPI GitHub Action in the CD pipeline.
7+
38
### v1.3.19 (2025-09-16)
49

510
- **Changed:** The `load_archive` and `load` functions use number detection as a fallback when the file extension is not recognized.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "py-jsonl"
3-
version = "1.3.19"
3+
version = "1.3.20"
44
description = "A lightweight Python library for handling jsonlines files."
55
readme = "README.md"
66
license-files = ["LICENSE"]
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
1818
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1920
"Intended Audience :: Developers",
2021
"Intended Audience :: Information Technology",
2122
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)