Skip to content

Commit 36a0304

Browse files
committed
Bump version number to 0.22.1 and add release notes
1 parent 5754de3 commit 36a0304

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

NEWS

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
.. An online version of the release history can be found here:
22
.. http://pysam.readthedocs.io/en/latest/release.html
33

4+
Release 0.22.1
5+
==============
6+
7+
.. rubric:: 24 April 2024
8+
9+
Bugfix release, which still wraps htslib/samtools/bcftools 1.18.
10+
11+
Bugs fixed:
12+
13+
* Preserve all header field tags defined in the SAM specification (notably TP)
14+
in :meth:`.AlignmentHeader.from_dict` and :meth:`.AlignmentHeader.to_dict`
15+
(#1237, PR #1238, thanks to Tim Fennell and Nils Homer)
16+
17+
* Adjust HTSlib's Makefile so that ``make distclean`` no longer tries to
18+
rebuild the htscodecs configury (PR #1247, reported by Nicola Soranzo)
19+
20+
* Reinstate S3 support in pre-built Linux wheels: support for this protocol
21+
was inadvertently omitted from the pre-built 0.22.0 wheels on Linux
22+
(#1249, #1277, etc varying circumstances; likely it is this that was
23+
reported by Mathew Baines, Benjamin Sargsyan, et al)
24+
25+
* Add missing :attr:`.AlignedSegment.is_mapped` etc properties to type stubs
26+
(PR #1273, thanks to Matt Stone)
27+
28+
* Fix off-by-one NamedTupleProxy, :class:`.asBed`, etc array bounds check
29+
(#1279, reported by Dan Bolser)
30+
31+
* Make pysam's klib headers compatible with C++ (reported by Martin Grigorov)
32+
33+
434
Release 0.22.0
535
==============
636

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'pysam'
54-
copyright = '2009–2023 Andreas Heger, John Marshall, Kevin Jacobs, et al'
54+
copyright = '2009–2024 Andreas Heger, John Marshall, Kevin Jacobs, et al'
5555

5656
# Included at the end of each rst file
5757
rst_epilog = '''

pysam/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pysam versioning information
2-
__version__ = "0.22.0"
2+
__version__ = "0.22.1"
33

44
__samtools_version__ = "1.18"
55
__bcftools_version__ = "1.18"

0 commit comments

Comments
 (0)