diff options
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-term/src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 3751b5ab..b8392ad5 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-term" -version = "0.1.0" +version = "0.0.9" description = "A post-modern text editor." authors = ["Blaž Hrastnik <blaz@mxxn.io>"] edition = "2018" diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 0b55921a..75b1dfdc 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -141,7 +141,7 @@ FLAGS: } if args.display_version { - println!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")); + println!("helix {}", env!("CARGO_PKG_VERSION")); std::process::exit(0); } |