diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 526ce98a..3f29ef13 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,19 @@ 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. +v12.2.0 +------- + +Features: + +- Add a `make_writable` method to `Frame` instances (:issue:`1414`). +- Use `av_guess_sample_aspect_ratio` to report sample and display aspect ratios. + +Fixes: + +- Fix a crash when assigning an `AudioLayout` to `AudioCodecContext.layout` (:issue:`1434`). +- Remove a circular reference which caused `AudioSampler` to occupy memory until garbage collected (:issue:`1429`). +- Fix more type stubs, remove incorrect `__init__.pyi`. v12.1.0 ------- diff --git a/av/about.py b/av/about.py index 239627e9..59c3246f 100644 --- a/av/about.py +++ b/av/about.py @@ -1 +1 @@ -__version__ = "12.2.0rc1" +__version__ = "12.2.0"