Skip to content

Commit

Permalink
v0.2.4 release
Browse files Browse the repository at this point in the history
Changes since v0.2.3:
- Grammar improvements
- Better C++ parsing
- Fix panic during result printing
  • Loading branch information
felixwilhelm committed Mar 21, 2022
1 parent 29fd726 commit ad8d424
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weggli"
version = "0.2.3"
version = "0.2.4"
authors = ["fwilhelm"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])],
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <fwilhelm@google.com>")
.about(help::ABOUT)
.setting(clap::AppSettings::ArgRequiredElseHelp)
Expand Down

3 comments on commit ad8d424

@bjornfor
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, did you forget to push the corresponding git tag?

@zippy2
Copy link

@zippy2 zippy2 commented on ad8d424 May 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like it. I don't see it under releases.

@felixwilhelm
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I missed this.
This should now be fixed. Thanks for the ping :)

Please sign in to comment.