Skip to content

Commit bc0ca08

Browse files
committed
Bump version to 14.2.0
1 parent 524786b commit bc0ca08

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

CHANGELOG.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ We are operating with `semantic versioning <https://semver.org>`_.
1717
are merged into the "default" branch.
1818

1919

20-
v14.2.0 (Unreleased)
21-
--------------------
20+
v14.2.0
21+
-------
2222

2323
Features:
2424

@@ -31,7 +31,6 @@ Features:
3131
Misc:
3232

3333
- Drop support for MacOS 11 by :gh-user:`WyattBlue` in (:pr:`1764`).
34-
- Add warnings when compiling from source by :gh-user:`WyattBlue` in (:pr:`1773`).
3534

3635

3736
v14.1.0

av/about.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "14.2.0rc1"
1+
__version__ = "14.2.0"

av/codec/context.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ cdef class CodecContext:
218218
self.ptr.time_base.num = 1
219219
self.ptr.time_base.den = lib.AV_TIME_BASE
220220

221-
err_check(lib.avcodec_open2(self.ptr, self.codec.ptr, &options.ptr))
221+
err_check(lib.avcodec_open2(self.ptr, self.codec.ptr, &options.ptr), "avcodec_open2(" + self.codec.name + ")")
222222
self.is_open = True
223223
self.options = dict(options)
224224

scripts/ffmpeg-7.1.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7a-community/ffmpeg-{platform}.tar.gz"
3-
}
2+
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7.1-4/ffmpeg-{platform}.tar.gz"
3+
}

0 commit comments

Comments
 (0)