From 9e9336624cc19801acc71f3c489c190f156bfa9d Mon Sep 17 00:00:00 2001 From: Volodymyr Patuta <90917-fiplox@users.noreply.framagit.org> Date: Sat, 12 Dec 2020 18:02:15 +0100 Subject: [PATCH] v0.1.0, pretty usable --- src/rnote/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rnote/app.rs b/src/rnote/app.rs index 32aaccd..a0ecf46 100644 --- a/src/rnote/app.rs +++ b/src/rnote/app.rs @@ -3,7 +3,7 @@ pub use clap::{App, AppSettings, Arg, SubCommand}; /// Initialize all possible arguments. pub fn make_app() -> App<'static, 'static> { App::new("rnote") - .version("0.0.1") + .version("0.1.0") .author("Volodymyr Patuta ") .about("Minimal note talking cli tool.") .setting(AppSettings::ArgRequiredElseHelp)