From ad8d424e0da5b65f72ce69a884f1cd95f596d85f Mon Sep 17 00:00:00 2001 From: Felix Wilhelm Date: Mon, 21 Mar 2022 11:47:38 +0100 Subject: [PATCH] v0.2.4 release Changes since v0.2.3: - Grammar improvements - Better C++ parsing - Fix panic during result printing --- Cargo.lock | 2 +- Cargo.toml | 2 +- setup.py | 2 +- src/cli.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50e549b..01fd718 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1018,7 +1018,7 @@ dependencies = [ [[package]] name = "weggli" -version = "0.2.3" +version = "0.2.4" dependencies = [ "assert_cmd", "cc", diff --git a/Cargo.toml b/Cargo.toml index d4ec9a3..ecbc903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "weggli" -version = "0.2.3" +version = "0.2.4" authors = ["fwilhelm"] edition = "2018" license = "Apache-2.0" diff --git a/setup.py b/setup.py index 9e0c79e..6f6b336 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="weggli", - version="0.2.3", + version="0.2.4", author="fwilhelm", url="https://github.com/googleprojectzero/weggli", rust_extensions=[RustExtension("weggli", binding=Binding.PyO3, features=["python"])], diff --git a/src/cli.rs b/src/cli.rs index a8c7fc3..c00f42c 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -38,7 +38,7 @@ pub struct Args { /// The clap crate handles program exit and error messages for invalid arguments. pub fn parse_arguments() -> Args { let matches = App::new("weggli") - .version("0.2.3") + .version("0.2.4") .author("Felix Wilhelm ") .about(help::ABOUT) .setting(clap::AppSettings::ArgRequiredElseHelp)