diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e7dc3..725c9cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v0.3.0 + +Features: +- Broker is able to toggle if users want to scan branches, as well as being able to target specific branches to scan. Broker is also + able to toggle scanning tags. +- Broker checks for early network misconfigurations with preflight checks +- Broker fix surfaces failing integration scans +- Broker now does not fail fatally and has just has those errors surfaced +- Broker now detects unknown fields in config and returns errors ## v0.2.3 diff --git a/Cargo.lock b/Cargo.lock index 98bb927..c3a0300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "broker" -version = "0.3.0-pre" +version = "0.3.0" dependencies = [ "aho-corasick 0.7.20", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 9758fa6..21c876f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broker" -version = "0.3.0-pre" +version = "0.3.0" edition = "2021" description = "The bridge between FOSSA and internal DevOps services" readme = "README.md" diff --git a/docs/dev/README.md b/docs/dev/README.md index f24f45b..3b85208 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md @@ -149,7 +149,7 @@ matching the `version` field, with a `v` prefix. In the future, the plan is to automate the release process with `make release`. -**It is recommended** to instead use `cargo release`, which automates much of this process and has +**It is recommended** to instead use `cargo release` (`cargo install cargo-release` for installation), which automates much of this process and has some safety checks (for example it ensures you're tagging on `main`): ```