Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlattimore committed Sep 21, 2023
1 parent 1dc374c commit b4fe07a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 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.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "cargo-acl"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.67"
license = "MIT OR Apache-2.0"
description = "A Rust code ACL checker"
readme = "README.md"
repository = "https://github.com/cackle-rs/cackle"
keywords = ["cargo", "plugin", "security", "supply-chain"]

[dependencies]
anyhow = "1.0.33"
Expand Down
14 changes: 14 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Version 0.3.0
* Renamed to cargo-acl
* UI now only activates when necessary.
* `check` and `ui` subcommands removed - now just run with no subcommand and turn the UI off with
`--no-ui` or `-n`.
* `cargo` subcommand removed. Instead of `cackle cargo test`, now you run `cargo acl test`.
* Now available as a github action.
* Allow APIs based on what kind of binary is being built (test, build script or other)
* `sandbox.make_writable` can be used to create directories that need to be writable
* Automatic edits now use dotted notation within `pkg.x` rather than defining a separate
`pkg.x.build` etc.
* Backtraces can now display sources from the rust standard library.
* Various other bug fixes

# Version 0.2.0
* Fixed a few false-attribution problems.
* Syntax highlight code snippets.
Expand Down

0 comments on commit b4fe07a

Please sign in to comment.