From 948521fcc44bae820a482a46180677b861d5410d Mon Sep 17 00:00:00 2001 From: Kaan Genc Date: Sun, 30 Jan 2022 04:48:24 -0500 Subject: [PATCH] fix incorrect name on version string --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/opts.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58c5e3d..9210a54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -226,7 +226,7 @@ dependencies = [ [[package]] name = "gandi-live-dns" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "die-exit", diff --git a/Cargo.toml b/Cargo.toml index bcd3432..356b5be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gandi-live-dns" -version = "1.0.0" +version = "1.0.1" edition = "2021" [profile.release] diff --git a/src/opts.rs b/src/opts.rs index 252e68d..241aca9 100644 --- a/src/opts.rs +++ b/src/opts.rs @@ -2,7 +2,7 @@ use structopt::StructOpt; /// A tool to automatically update DNS entries on Gandi, using it as a dynamic DNS system. #[derive(StructOpt, Debug)] -#[structopt(name = "gandi-dynamic-dns")] +#[structopt(name = "gandi-live-dns")] pub struct Opts { /// The path to the configuration file. #[structopt(long)]