mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 09:31:06 +00:00
Update version to 0.8.2 and update changelog
This commit is contained in:
parent
c232e192f1
commit
2364bbe85d
11 changed files with 76 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "examples"
|
name = "examples"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -5,6 +5,20 @@ 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),
|
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).
|
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
|
||||||
|
|
||||||
|
## [0.8.2] - 2017-11-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Implement StaticType of BufferRef instead of Buffer. Buffer aka
|
||||||
|
GstRc<BufferRef> already implements StaticType if BufferRef does, and
|
||||||
|
without this it was not possible to use Buffers in GValues.
|
||||||
|
- Free memory of the appsink/appsrc callbacks with the correct type. It was
|
||||||
|
crashing because of using the wrong type before.
|
||||||
|
- Fix documentation URLs in Cargo.toml.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Installation instructions and links to documentation for getting started to
|
||||||
|
README.md.
|
||||||
|
|
||||||
## [0.8.1] - 2017-09-15
|
## [0.8.1] - 2017-09-15
|
||||||
### Added
|
### Added
|
||||||
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer-app"
|
name = "gstreamer-app"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
categories = ["api-bindings", "multimedia"]
|
categories = ["api-bindings", "multimedia"]
|
||||||
description = "Rust bindings for GStreamer App library"
|
description = "Rust bindings for GStreamer App library"
|
||||||
|
|
|
@ -5,6 +5,20 @@ 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),
|
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).
|
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
|
||||||
|
|
||||||
|
## [0.8.2] - 2017-11-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Implement StaticType of BufferRef instead of Buffer. Buffer aka
|
||||||
|
GstRc<BufferRef> already implements StaticType if BufferRef does, and
|
||||||
|
without this it was not possible to use Buffers in GValues.
|
||||||
|
- Free memory of the appsink/appsrc callbacks with the correct type. It was
|
||||||
|
crashing because of using the wrong type before.
|
||||||
|
- Fix documentation URLs in Cargo.toml.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Installation instructions and links to documentation for getting started to
|
||||||
|
README.md.
|
||||||
|
|
||||||
## [0.8.1] - 2017-09-15
|
## [0.8.1] - 2017-09-15
|
||||||
### Added
|
### Added
|
||||||
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer-audio"
|
name = "gstreamer-audio"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
categories = ["api-bindings", "multimedia"]
|
categories = ["api-bindings", "multimedia"]
|
||||||
description = "Rust bindings for GStreamer Audio library"
|
description = "Rust bindings for GStreamer Audio library"
|
||||||
|
|
|
@ -5,6 +5,20 @@ 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),
|
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).
|
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
|
||||||
|
|
||||||
|
## [0.8.2] - 2017-11-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Implement StaticType of BufferRef instead of Buffer. Buffer aka
|
||||||
|
GstRc<BufferRef> already implements StaticType if BufferRef does, and
|
||||||
|
without this it was not possible to use Buffers in GValues.
|
||||||
|
- Free memory of the appsink/appsrc callbacks with the correct type. It was
|
||||||
|
crashing because of using the wrong type before.
|
||||||
|
- Fix documentation URLs in Cargo.toml.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Installation instructions and links to documentation for getting started to
|
||||||
|
README.md.
|
||||||
|
|
||||||
## [0.8.1] - 2017-09-15
|
## [0.8.1] - 2017-09-15
|
||||||
### Added
|
### Added
|
||||||
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer-player"
|
name = "gstreamer-player"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
categories = ["api-bindings", "multimedia"]
|
categories = ["api-bindings", "multimedia"]
|
||||||
description = "Rust bindings for GStreamer Player library"
|
description = "Rust bindings for GStreamer Player library"
|
||||||
|
|
|
@ -5,6 +5,20 @@ 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),
|
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).
|
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
|
||||||
|
|
||||||
|
## [0.8.2] - 2017-11-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Implement StaticType of BufferRef instead of Buffer. Buffer aka
|
||||||
|
GstRc<BufferRef> already implements StaticType if BufferRef does, and
|
||||||
|
without this it was not possible to use Buffers in GValues.
|
||||||
|
- Free memory of the appsink/appsrc callbacks with the correct type. It was
|
||||||
|
crashing because of using the wrong type before.
|
||||||
|
- Fix documentation URLs in Cargo.toml.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Installation instructions and links to documentation for getting started to
|
||||||
|
README.md.
|
||||||
|
|
||||||
## [0.8.1] - 2017-09-15
|
## [0.8.1] - 2017-09-15
|
||||||
### Added
|
### Added
|
||||||
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer-video"
|
name = "gstreamer-video"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
categories = ["api-bindings", "multimedia"]
|
categories = ["api-bindings", "multimedia"]
|
||||||
description = "Rust bindings for GStreamer Video library"
|
description = "Rust bindings for GStreamer Video library"
|
||||||
|
|
|
@ -5,6 +5,20 @@ 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),
|
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).
|
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
|
||||||
|
|
||||||
|
## [0.8.2] - 2017-11-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Implement StaticType of BufferRef instead of Buffer. Buffer aka
|
||||||
|
GstRc<BufferRef> already implements StaticType if BufferRef does, and
|
||||||
|
without this it was not possible to use Buffers in GValues.
|
||||||
|
- Free memory of the appsink/appsrc callbacks with the correct type. It was
|
||||||
|
crashing because of using the wrong type before.
|
||||||
|
- Fix documentation URLs in Cargo.toml.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Installation instructions and links to documentation for getting started to
|
||||||
|
README.md.
|
||||||
|
|
||||||
## [0.8.1] - 2017-09-15
|
## [0.8.1] - 2017-09-15
|
||||||
### Added
|
### Added
|
||||||
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
- Implement Send+Sync for Query, Message and Event, and their corresponding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer"
|
name = "gstreamer"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
||||||
categories = ["api-bindings", "multimedia"]
|
categories = ["api-bindings", "multimedia"]
|
||||||
description = "Rust bindings for GStreamer"
|
description = "Rust bindings for GStreamer"
|
||||||
|
|
Loading…
Reference in a new issue