From 65c833bc808b1fbe351d038f3cee7766c7af97b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 18 Jan 2022 16:51:35 +0200 Subject: [PATCH] Update CHANGELOG.md for 0.18.1 --- gstreamer/CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gstreamer/CHANGELOG.md b/gstreamer/CHANGELOG.md index ed5fb2a65..8ba5eb31d 100644 --- a/gstreamer/CHANGELOG.md +++ b/gstreamer/CHANGELOG.md @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html), specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field). +## [0.18.1] - 2022-01-18 +### Fixed +- `Message::view()` also handles the redirect message now. +- `Message` and `Query` view variants that return references now borrow again + from the underlying query and not the view enum, allowing to use them in a + wider scope. + +### Changed +- All miniobjects, `VideoTimeCode`, `Structure` and `CapsFeatures` are marked + as `#[repr(transparent)]` now to ensure that their memory representation is + exactly the underlying raw pointer. + ## [0.18.0] - 2022-01-16 ### Added - `gst_rtp::RtpHeaderExtension::read()` and `write()`.