From 0e6e4b391d4f7a8397f4531b6eae94238d1be1ae Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Tue, 25 Feb 2025 08:11:21 -0500 Subject: [PATCH] Bump version to 14.2.0 --- CHANGELOG.rst | 5 ++--- av/about.py | 2 +- av/codec/context.pyx | 2 +- scripts/ffmpeg-7.1.json | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7c8ece6b6..a5d57b4c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,8 +17,8 @@ We are operating with `semantic versioning `_. are merged into the "default" branch. -v14.2.0 (Unreleased) --------------------- +v14.2.0 +------- Features: @@ -31,7 +31,6 @@ Features: Misc: - Drop support for MacOS 11 by :gh-user:`WyattBlue` in (:pr:`1764`). -- Add warnings when compiling from source by :gh-user:`WyattBlue` in (:pr:`1773`). v14.1.0 diff --git a/av/about.py b/av/about.py index 4c6a9313e..331dde6ff 100644 --- a/av/about.py +++ b/av/about.py @@ -1 +1 @@ -__version__ = "14.2.0rc1" +__version__ = "14.2.0" diff --git a/av/codec/context.pyx b/av/codec/context.pyx index a56f14ddd..5ca8f24a4 100644 --- a/av/codec/context.pyx +++ b/av/codec/context.pyx @@ -218,7 +218,7 @@ cdef class CodecContext: self.ptr.time_base.num = 1 self.ptr.time_base.den = lib.AV_TIME_BASE - err_check(lib.avcodec_open2(self.ptr, self.codec.ptr, &options.ptr)) + err_check(lib.avcodec_open2(self.ptr, self.codec.ptr, &options.ptr), "avcodec_open2(" + self.codec.name + ")") self.is_open = True self.options = dict(options) diff --git a/scripts/ffmpeg-7.1.json b/scripts/ffmpeg-7.1.json index dd4f9a778..ee386661d 100644 --- a/scripts/ffmpeg-7.1.json +++ b/scripts/ffmpeg-7.1.json @@ -1,3 +1,3 @@ { - "url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7a-community/ffmpeg-{platform}.tar.gz" -} \ No newline at end of file + "url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7.1-4/ffmpeg-{platform}.tar.gz" +}