diff --git a/Cargo.lock b/Cargo.lock index 8c84c8f1..d7226d34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1084,7 +1084,7 @@ dependencies = [ [[package]] name = "diopser" -version = "0.1.0" +version = "0.2.0" dependencies = [ "nih_plug", "nih_plug_vizia", @@ -4011,7 +4011,7 @@ dependencies = [ [[package]] name = "spectral_compressor" -version = "0.1.0" +version = "0.2.0" dependencies = [ "nih_plug", "nih_plug_vizia", diff --git a/plugins/buffr_glitch/src/lib.rs b/plugins/buffr_glitch/src/lib.rs index a58c6491..c083239f 100644 --- a/plugins/buffr_glitch/src/lib.rs +++ b/plugins/buffr_glitch/src/lib.rs @@ -44,7 +44,7 @@ impl Plugin for BuffrGlitch { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/crisp/src/lib.rs b/plugins/crisp/src/lib.rs index 1e1e1442..8491fb55 100644 --- a/plugins/crisp/src/lib.rs +++ b/plugins/crisp/src/lib.rs @@ -300,7 +300,7 @@ impl Plugin for Crisp { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = NUM_CHANNELS; const DEFAULT_OUTPUT_CHANNELS: u32 = NUM_CHANNELS; diff --git a/plugins/crossover/src/lib.rs b/plugins/crossover/src/lib.rs index d2df590e..ef5779bf 100644 --- a/plugins/crossover/src/lib.rs +++ b/plugins/crossover/src/lib.rs @@ -164,7 +164,7 @@ impl Plugin for Crossover { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = NUM_CHANNELS; const DEFAULT_OUTPUT_CHANNELS: u32 = NUM_CHANNELS; diff --git a/plugins/diopser/Cargo.toml b/plugins/diopser/Cargo.toml index c429367c..c98bf55e 100644 --- a/plugins/diopser/Cargo.toml +++ b/plugins/diopser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diopser" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Robbert van der Helm "] license = "GPL-3.0-or-later" diff --git a/plugins/diopser/src/lib.rs b/plugins/diopser/src/lib.rs index 6d1d9f44..2d5747c5 100644 --- a/plugins/diopser/src/lib.rs +++ b/plugins/diopser/src/lib.rs @@ -256,7 +256,7 @@ impl Plugin for Diopser { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.2.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/gain/src/lib.rs b/plugins/examples/gain/src/lib.rs index 300ce71c..027ce438 100644 --- a/plugins/examples/gain/src/lib.rs +++ b/plugins/examples/gain/src/lib.rs @@ -116,7 +116,7 @@ impl Plugin for Gain { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/gain_gui_egui/src/lib.rs b/plugins/examples/gain_gui_egui/src/lib.rs index 0ee74d7c..d8c62fa8 100644 --- a/plugins/examples/gain_gui_egui/src/lib.rs +++ b/plugins/examples/gain_gui_egui/src/lib.rs @@ -76,7 +76,7 @@ impl Plugin for Gain { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/gain_gui_iced/src/lib.rs b/plugins/examples/gain_gui_iced/src/lib.rs index 9dba4bd1..07bd5910 100644 --- a/plugins/examples/gain_gui_iced/src/lib.rs +++ b/plugins/examples/gain_gui_iced/src/lib.rs @@ -73,7 +73,7 @@ impl Plugin for Gain { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/gain_gui_vizia/src/lib.rs b/plugins/examples/gain_gui_vizia/src/lib.rs index 2e4a4ba1..76e763b0 100644 --- a/plugins/examples/gain_gui_vizia/src/lib.rs +++ b/plugins/examples/gain_gui_vizia/src/lib.rs @@ -72,7 +72,7 @@ impl Plugin for Gain { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/midi_inverter/src/lib.rs b/plugins/examples/midi_inverter/src/lib.rs index c312f8d3..9e83c288 100644 --- a/plugins/examples/midi_inverter/src/lib.rs +++ b/plugins/examples/midi_inverter/src/lib.rs @@ -24,7 +24,7 @@ impl Plugin for MidiInverter { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 0; const DEFAULT_OUTPUT_CHANNELS: u32 = 0; diff --git a/plugins/examples/poly_mod_synth/src/lib.rs b/plugins/examples/poly_mod_synth/src/lib.rs index 9a29e782..9505588b 100644 --- a/plugins/examples/poly_mod_synth/src/lib.rs +++ b/plugins/examples/poly_mod_synth/src/lib.rs @@ -146,7 +146,7 @@ impl Plugin for PolyModSynth { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/sine/src/lib.rs b/plugins/examples/sine/src/lib.rs index ad511e7d..6b7c8fe9 100644 --- a/plugins/examples/sine/src/lib.rs +++ b/plugins/examples/sine/src/lib.rs @@ -103,7 +103,7 @@ impl Plugin for Sine { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 0; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/examples/stft/src/lib.rs b/plugins/examples/stft/src/lib.rs index e5b1f0a0..87185eab 100644 --- a/plugins/examples/stft/src/lib.rs +++ b/plugins/examples/stft/src/lib.rs @@ -88,7 +88,7 @@ impl Plugin for Stft { const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ"; const EMAIL: &'static str = "info@example.com"; - const VERSION: &'static str = "0.0.1"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/loudness_war_winner/src/lib.rs b/plugins/loudness_war_winner/src/lib.rs index a4c0f8dc..187d2260 100644 --- a/plugins/loudness_war_winner/src/lib.rs +++ b/plugins/loudness_war_winner/src/lib.rs @@ -118,7 +118,7 @@ impl Plugin for LoudnessWarWinner { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/puberty_simulator/src/lib.rs b/plugins/puberty_simulator/src/lib.rs index 4dcd56c9..3f496852 100644 --- a/plugins/puberty_simulator/src/lib.rs +++ b/plugins/puberty_simulator/src/lib.rs @@ -163,7 +163,7 @@ impl Plugin for PubertySimulator { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/safety_limiter/src/lib.rs b/plugins/safety_limiter/src/lib.rs index de0824f3..c7220dab 100644 --- a/plugins/safety_limiter/src/lib.rs +++ b/plugins/safety_limiter/src/lib.rs @@ -152,7 +152,7 @@ impl Plugin for SafetyLimiter { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.1.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2; diff --git a/plugins/spectral_compressor/Cargo.toml b/plugins/spectral_compressor/Cargo.toml index 8eb9ef57..065f4a25 100644 --- a/plugins/spectral_compressor/Cargo.toml +++ b/plugins/spectral_compressor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spectral_compressor" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Robbert van der Helm "] license = "GPL-3.0-or-later" diff --git a/plugins/spectral_compressor/src/lib.rs b/plugins/spectral_compressor/src/lib.rs index fd95d280..548bb319 100644 --- a/plugins/spectral_compressor/src/lib.rs +++ b/plugins/spectral_compressor/src/lib.rs @@ -261,7 +261,7 @@ impl Plugin for SpectralCompressor { const URL: &'static str = "https://github.com/robbert-vdh/nih-plug"; const EMAIL: &'static str = "mail@robbertvanderhelm.nl"; - const VERSION: &'static str = "0.2.0"; + const VERSION: &'static str = env!("CARGO_PKG_VERSION"); const DEFAULT_INPUT_CHANNELS: u32 = 2; const DEFAULT_OUTPUT_CHANNELS: u32 = 2;