Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dimo414 committed Aug 28, 2023
1 parent cd93efd commit 5113cb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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
Expand Up @@ -2,7 +2,7 @@
name = "bkt"
# When updating the version number tag the commit in git
# https://rust-lang.github.io/api-guidelines/documentation.html#release-notes-document-all-significant-changes-c-relnotes
version = "0.7.0"
version = "0.7.1"
authors = ["Michael Diamond <[email protected]>"]
description = "CLI and Rust library for caching subprocess invocations"
repository = "https://github.com/dimo414/bkt"
Expand Down
2 changes: 1 addition & 1 deletion tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ mod cli {
// "interesting" case and it covers the read-nothing behavior too.
let mut buf = [0; 10];
child.stdout.as_mut().unwrap().read_exact(&mut buf).unwrap();
assert_eq!(buf, ['.' as u8; 10]);
assert_eq!(buf, [b'.'; 10]);

std::mem::drop(child.stdout.take().unwrap()); // close stdout without reading further

Expand Down

5 comments on commit 5113cb1

@dimo414
Copy link
Owner Author

Choose a reason for hiding this comment

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

@thiagowfx any chance you're able to update the Arch package? 🙏

@thiagowfx
Copy link

Choose a reason for hiding this comment

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

A bit tricky at the moment because I don’t currently have access to an Arch machine. Is it just a matter of bumping the version or did anything else change?

@dimo414
Copy link
Owner Author

@dimo414 dimo414 commented on 5113cb1 Aug 30, 2023

Choose a reason for hiding this comment

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

@thiagowfx I assume it's just a version bump? Not sure what other things you're referring to, but here's the diffs since 0.5.2 - you can check.github/workflows/rust.yml and Cargo.toml to see if anything suspicious stands out to you.

@thiagowfx
Copy link

Choose a reason for hiding this comment

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

Basically as long as there are no changes in the build steps and no new dependencies, it's mostly a matter of updating the version and the checksums. I can add you as a co-packager if you want.

@dimo414
Copy link
Owner Author

Choose a reason for hiding this comment

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

@thiagowfx the dependency on clap has had a version bump and there's a dev dependency on regex now - see the Cargo.toml changes in the link above (I can't seem to link directly to the file).

You're welcome to add me as a co-maintainer but I don't use Arch at all 😄 so I don't know how helpful I can be.

Please sign in to comment.