fix incorrect name on version string

This commit is contained in:
Kaan Barmore-Genç 2022-01-30 04:48:24 -05:00
parent 59e4a5e4d9
commit 948521fcc4
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -226,7 +226,7 @@ dependencies = [
[[package]] [[package]]
name = "gandi-live-dns" name = "gandi-live-dns"
version = "1.0.0" version = "1.0.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"die-exit", "die-exit",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "gandi-live-dns" name = "gandi-live-dns"
version = "1.0.0" version = "1.0.1"
edition = "2021" edition = "2021"
[profile.release] [profile.release]

View file

@ -2,7 +2,7 @@ use structopt::StructOpt;
/// A tool to automatically update DNS entries on Gandi, using it as a dynamic DNS system. /// A tool to automatically update DNS entries on Gandi, using it as a dynamic DNS system.
#[derive(StructOpt, Debug)] #[derive(StructOpt, Debug)]
#[structopt(name = "gandi-dynamic-dns")] #[structopt(name = "gandi-live-dns")]
pub struct Opts { pub struct Opts {
/// The path to the configuration file. /// The path to the configuration file.
#[structopt(long)] #[structopt(long)]