Skip to content

Commit 545674f

Browse files
committed
update changelog
1 parent c869000 commit 545674f

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/source/changes.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
Changelog
44
=========
55

6+
Changes in v0.12.0
7+
------------------
8+
9+
2025-03-14
10+
11+
* Allow ``pathlib.Path`` objects to be used in arbitrary ``BedTool`` methods.
12+
Previously, only ``BedTool`` creation supported ``Path`` (fixes #421)
13+
* Add support for Python 3.13, thanks to @theAeon Andrew Robbins (fixes #422)
14+
15+
616
Changes in v0.11.0
717
------------------
818

pybedtools/bedtool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ def handle_kwargs(self, prog:str, arg_order: Optional[list[str]] = None, **kwarg
14601460
"mapBed": ",",
14611461
}
14621462
stdin = None
1463-
1463+
14641464
# If anything in kwargs is a pathlib Path, convert to string here.
14651465
for k, v in kwargs.items():
14661466
if isinstance(v, pathlib.PurePath):

0 commit comments

Comments
 (0)