mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 14:52:04 +00:00
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
# Changelog
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
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.1.3] - 2018-01-15
|
|
### Fixed
|
|
- Only require GStreamer >= 1.8, not >= 1.10. We didn't use any 1.10 API
|
|
anymore since quite a while
|
|
- Don't call BaseTransform::transform_ip in passthrough mode with a mutable
|
|
reference, but call a new transform_ip_passthrough with an immutable
|
|
reference. The mutable reference would've failed all mutable operations.
|
|
|
|
## [0.1.2] - 2018-01-03
|
|
### Fixed
|
|
- BaseTransform::transform_caps() caps parameter is not owned when chainging
|
|
to the parent class' implementation either
|
|
|
|
## [0.1.1] - 2018-01-03
|
|
### Fixed
|
|
- BaseTransform::transform_caps() caps parameter is not owned
|
|
|
|
## [0.1.0] - 2017-12-22
|
|
- Initial release of the `gst-plugin` crate.
|
|
|
|
[Unreleased]: https://github.com/sdroege/gstreamer-rs/compare/0.1.1...HEAD
|
|
[0.1.0]: https://github.com/sdroege/gstreamer-rs/compare/0.1.0...0.1.1
|