mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-05 17:19:42 +00:00
Update CHANGELOG.md for 0.9.0
This commit is contained in:
parent
4b9859633e
commit
f92f8157fd
18 changed files with 342 additions and 18 deletions
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
|
@ -5,6 +5,23 @@ 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.9.0] - 2020-07-05
|
||||
### Added
|
||||
- Updated bindings to 1.17.2, adding experimental 1.18 support. This can be
|
||||
opted-in via the "v1_18" feature flag but there might still be API changes
|
||||
in the newly added API.
|
||||
|
||||
### Changed
|
||||
- Minimum supported GStreamer version is 1.8 now.
|
||||
- The `system-deps` crate is now used for declaring the dependency on the C
|
||||
libraries instead of directly using `pkg-config`.
|
||||
|
||||
### Fixed
|
||||
- Various missing version markers were added, which should allow compilation
|
||||
against GStreamer 1.8 on Windows again. On Windows missing symbols are
|
||||
apparently an error even if they're not used.
|
||||
- `AUDIO/VIDEO_FORMATS_ALL` are ignored now as they're endian-dependent.
|
||||
|
||||
## [0.8.1] - 2019-12-16
|
||||
### Added
|
||||
- GStreamer RTP bindings
|
||||
|
@ -142,7 +159,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
|
|||
|
||||
- Initial release of the autogenerated GStreamer FFI bindings.
|
||||
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...HEAD
|
||||
[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.9.0...HEAD
|
||||
[0.9.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.7.0...0.8.0
|
||||
[0.7.0]: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys/compare/0.6.1...0.7.0
|
||||
|
|
Loading…
Reference in a new issue