forked from mirrors/gstreamer-rs
gstreamer/plugin_1_14: Use minor version 20 instead of 19 for v1_20
Now that gstreamer 1.20 is out all v1_20 plugins will be linked against the 1.20 stable release, not the unstable 1.19 development release.
This commit is contained in:
parent
a838b2ec36
commit
0873db2a41
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ pub const MAJOR_VERSION: i32 = 1;
|
||||||
|
|
||||||
cfg_if::cfg_if! {
|
cfg_if::cfg_if! {
|
||||||
if #[cfg(feature = "v1_20")] {
|
if #[cfg(feature = "v1_20")] {
|
||||||
pub const MINOR_VERSION: i32 = 19;
|
pub const MINOR_VERSION: i32 = 20;
|
||||||
} else if #[cfg(feature = "v1_18")] {
|
} else if #[cfg(feature = "v1_18")] {
|
||||||
pub const MINOR_VERSION: i32 = 18;
|
pub const MINOR_VERSION: i32 = 18;
|
||||||
} else if #[cfg(feature = "v1_16")] {
|
} else if #[cfg(feature = "v1_16")] {
|
||||||
|
|
Loading…
Reference in a new issue