Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jun 8, 2024
1 parent e5a74ac commit 5e99e95
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.0

- Fix mishandling of multibyte characters in the Go framework ([#1127](https://github.com/trailofbits/necessist/pull/1127))
- FEATURE: More informative summaries, e.g., "k removal candidates in m tests in n test files". Also, tests and test files are counted even if they contain no removal candidates. (fixes [#850](https://github.com/trailofbits/necessist/issues/850)) ([#1128](https://github.com/trailofbits/necessist/pull/1128))

## 0.4.9

- Add `panic` to list of ignored Go functions ([#1093](https://github.com/trailofbits/necessist/pull/1093))
Expand Down
6 changes: 3 additions & 3 deletions 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 core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-core"
version = "0.4.9"
version = "0.5.0"
edition = "2021"

description = "necessist-core"
Expand Down
4 changes: 2 additions & 2 deletions frameworks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-frameworks"
version = "0.4.9"
version = "0.5.0"
edition = "2021"

description = "necessist-frameworks"
Expand All @@ -10,7 +10,7 @@ license = "AGPL-3.0"
repository = "https://github.com/trailofbits/necessist"

[dependencies]
necessist-core = { version = "=0.4.9", path = "../core" }
necessist-core = { version = "=0.5.0", path = "../core" }

anyhow = "1.0"
assert_cmd = "2.0"
Expand Down
6 changes: 3 additions & 3 deletions necessist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist"
version = "0.4.9"
version = "0.5.0"
edition = "2021"

description = "necessist"
Expand All @@ -10,8 +10,8 @@ license = "AGPL-3.0"
repository = "https://github.com/trailofbits/necessist"

[dependencies]
necessist-core = { version = "=0.4.9", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.4.9", path = "../frameworks" }
necessist-core = { version = "=0.5.0", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.5.0", path = "../frameworks" }

anyhow = { version = "1.0", features = ["backtrace"] }
clap = "4.5"
Expand Down

0 comments on commit 5e99e95

Please sign in to comment.