From 895bcf2c3b61349b95cd7440573077595bd1115c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeremy=20Lain=C3=A9?= Date: Mon, 7 Mar 2022 15:44:29 +0100 Subject: [PATCH] Start preparing changelog for v9.0.0 --- CHANGELOG.rst | 22 +++++++++++++++++++++- av/about.py | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dd1aae32f..8d394a0e5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,9 +16,29 @@ We are operating with `semantic versioning `_. Note that they these tags will not actually close the issue/PR until they are merged into the "default" branch, currently "develop"). -v8.1.1.dev0 +v9.0.0.dev0 ------ +Major: + +- Re-implement AudioResampler with aformat and buffersink (:issue:`761`). + AudioResampler.resample() now returns a list of frames. +- Remove deprecated methods: AudioFrame.to_nd_array, VideoFrame.to_nd_array and Stream.seek. + +Minor: + +- Provide binary wheels for macOS/arm64 and Linux/aarch64. +- Simplify setup.py, require Cython. +- Update the installation instructions to in favor of PyPI. +- Fix VideoFrame.to_image with height & width (:issue:`878`). +- Fix setting Stream time_base (:issue:`784`). +- Replace deprecated av_init_packet with av_packet_alloc (:issue:`872`). +- Validate pixel format in VideoCodecContext.pix_fmt setter (:issue:`815`). +- Fix AudioFrame ndarray conversion endianness (:issue:`833`). +- Improve time_base support with filters (:issue:`765`). +- Allow flushing filters by sending `None` (:issue:`886`). +- Avoid unnecessary vsnprintf() calls in log_callback() (:issue:`877`). +- Make Frame.from_ndarray ValueError instead of AssertionError. v8.1.0 ------ diff --git a/av/about.py b/av/about.py index 777de5c43..ab5e1711f 100644 --- a/av/about.py +++ b/av/about.py @@ -1 +1 @@ -__version__ = "8.1.1.dev0" +__version__ = "9.0.0.dev0"