From e047a0e77698dbabcff7f4cac841ccf6bb6beedb Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 13 Jul 2020 12:00:55 +0200 Subject: [PATCH] Update license and version for yabridgectl Easiest to just match yabridge itself. --- tools/yabridgectl/Cargo.lock | 2 +- tools/yabridgectl/Cargo.toml | 7 ++++++- tools/yabridgectl/src/main.rs | 16 ++++++++++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/tools/yabridgectl/Cargo.lock b/tools/yabridgectl/Cargo.lock index 84e61ab4..094db8c0 100644 --- a/tools/yabridgectl/Cargo.lock +++ b/tools/yabridgectl/Cargo.lock @@ -399,7 +399,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "yabridgectl" -version = "0.1.0" +version = "1.2.1" dependencies = [ "aho-corasick", "clap", diff --git a/tools/yabridgectl/Cargo.toml b/tools/yabridgectl/Cargo.toml index 319377bf..5917925e 100644 --- a/tools/yabridgectl/Cargo.toml +++ b/tools/yabridgectl/Cargo.toml @@ -1,8 +1,13 @@ [package] name = "yabridgectl" -version = "0.1.0" +# This version is linked to yabridge's version for clarity's sake and because +# there's not a lot going on here +version = "1.2.1" authors = ["Robbert van der Helm "] edition = "2018" +description = "Optional command line helper to set up yabridge" +repository = "https://github.com/robbert-vdh/yabridge" +license = "GPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tools/yabridgectl/src/main.rs b/tools/yabridgectl/src/main.rs index e7a11a96..bdaf5c9d 100644 --- a/tools/yabridgectl/src/main.rs +++ b/tools/yabridgectl/src/main.rs @@ -1,3 +1,19 @@ +// yabridge: a Wine VST bridge +// Copyright (C) 2020 Robbert van der Helm +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + fn main() { println!("Hello, world!"); }