diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1312b44..8abb892 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,7 +35,7 @@ jobs: id-token: write steps: - name: Get the artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist diff --git a/LICENSE b/LICENSE index ae02b51..ba31dc4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2023 Matthias Geier +Copyright (c) 2015-2024 Matthias Geier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/NEWS.rst b/NEWS.rst index 8a4102a..5ea964f 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,5 +1,9 @@ +0.4.7 (2024-05-27): + * support ``paWinWasapiAutoConvert`` with ``auto_convert`` flag in `WasapiSettings` + * Avoid exception in `PortAudioError`\ ``.__str__()`` + 0.4.6 (2023-02-19): - * Redirect stderr with os.dup2() instead of CFFI calls + * Redirect stderr with ``os.dup2()`` instead of CFFI calls 0.4.5 (2022-08-21): * Add ``index`` field to device dict diff --git a/sounddevice.py b/sounddevice.py index fc44b83..e59244b 100644 --- a/sounddevice.py +++ b/sounddevice.py @@ -48,7 +48,7 @@ https://python-sounddevice.readthedocs.io/ """ -__version__ = '0.4.6' +__version__ = '0.4.7' import atexit as _atexit import os as _os