diff --git a/Cargo.lock b/Cargo.lock index 6b97a69..59eae5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -417,7 +417,7 @@ dependencies = [ [[package]] name = "solnix-compiler" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index d127bed..b23528d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solnix-compiler" -version = "0.1.0" +version = "0.2.0" edition = "2021" [[bin]] diff --git a/src/main.rs b/src/main.rs index e98a05f..58e4a9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,7 @@ use clap::{Arg, Command, ArgMatches}; fn main() { let mut app = Command::new("solnixc") - .version("0.1.0-preview") + .version("0.2.0") .about("Experimental eBPF compiler for tracepoint programs") .subcommand( Command::new("compile") @@ -39,7 +39,7 @@ fn main() { match matches.subcommand() { Some(("compile", sub_m)) => compile_cmd(sub_m), _ => { - println!("Solnix Compiler v0.1.0-preview"); + println!("Solnix Compiler v0.2.0"); app.print_help().unwrap(); println!(); }