Skip to content

Commit

Permalink
Prepare for 3.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Aug 8, 2023
1 parent 5cde973 commit 7b02e7c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Changelog
=========

.. rubric:: Development version
.. rubric:: 3.13.0

- Reformat the Python codebase using black_ and isort_.
- Add `pre-commit`_ configuration.
- On i386, check for SSE2 support at runtime rather than configure time.
- Free readers only when the stream is destroyed. This fixes a bug that caused
the Python API to be accessed without the GIL when using
:py:meth:`~spead2.recv.Stream.add_buffer_reader`.
- Improve unit tests by explicitly closing TCP sockets, to avoid
:exc:`ResourceWarning` when testing with ``python -X dev``.
- Remove :py:mod:`wheel` from ``build-system.requires``.

.. _black: https://black.readthedocs.io/en/stable/
.. _isort: https://pycqa.github.io/isort/
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ libspead2_a_SOURCES = \
if SHARED_LIBRARY
lib_LTLIBRARIES = libspead2.la
libspead2_la_SOURCES = $(libspead2_a_SOURCES)
libspead2_la_LDFLAGS = -shared -version-info 3:0:0
libspead2_la_LDFLAGS = -shared -version-info 4:0:0
# Dummy CXXFLAGS to force automake to build the sources independently for
# this target.
libspead2_la_CXXFLAGS = $(AM_CXXFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion src/spead2/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.12.0"
__version__ = "3.13.0"

0 comments on commit 7b02e7c

Please sign in to comment.