Skip to content

Commit

Permalink
Bump version number to 0.22.1 and add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Apr 23, 2024
1 parent 5754de3 commit 36a0304
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
.. An online version of the release history can be found here:
.. http://pysam.readthedocs.io/en/latest/release.html

Release 0.22.1
==============

.. rubric:: 24 April 2024

Bugfix release, which still wraps htslib/samtools/bcftools 1.18.

Bugs fixed:

* Preserve all header field tags defined in the SAM specification (notably TP)
in :meth:`.AlignmentHeader.from_dict` and :meth:`.AlignmentHeader.to_dict`
(#1237, PR #1238, thanks to Tim Fennell and Nils Homer)

* Adjust HTSlib's Makefile so that ``make distclean`` no longer tries to
rebuild the htscodecs configury (PR #1247, reported by Nicola Soranzo)

* Reinstate S3 support in pre-built Linux wheels: support for this protocol
was inadvertently omitted from the pre-built 0.22.0 wheels on Linux
(#1249, #1277, etc varying circumstances; likely it is this that was
reported by Mathew Baines, Benjamin Sargsyan, et al)

* Add missing :attr:`.AlignedSegment.is_mapped` etc properties to type stubs
(PR #1273, thanks to Matt Stone)

* Fix off-by-one NamedTupleProxy, :class:`.asBed`, etc array bounds check
(#1279, reported by Dan Bolser)

* Make pysam's klib headers compatible with C++ (reported by Martin Grigorov)


Release 0.22.0
==============

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

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

# Included at the end of each rst file
rst_epilog = '''
Expand Down
2 changes: 1 addition & 1 deletion pysam/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pysam versioning information
__version__ = "0.22.0"
__version__ = "0.22.1"

__samtools_version__ = "1.18"
__bcftools_version__ = "1.18"
Expand Down

0 comments on commit 36a0304

Please sign in to comment.