Skip to content

Commit

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

## 0.6.0

- Don't remove `const` and `type` declarations in Go code ([#1139](https://github.com/trailofbits/necessist/pull/1139))
- Update `swc_core` to version 0.95 ([#1146](https://github.com/trailofbits/necessist/pull/1146))
- FEATURE: Use mutant schemata in the spirit of [Untch, et al. '93](https://dl.acm.org/doi/10.1145/154183.154265) when removing statements. This should make running Necessist faster. ([252ed2e](https://github.com/trailofbits/necessist/commit/252ed2eb4557cfe0741969f222b1add9584b3dbc))

## 0.5.1

- Update `solang-parser` to version 0.3.4 ([#1132](https://github.com/trailofbits/necessist/pull/1132))
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.

4 changes: 2 additions & 2 deletions backends/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-backends"
version = "0.5.1"
version = "0.6.0"
edition = "2021"

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

[dependencies]
necessist-core = { version = "=0.5.1", path = "../core" }
necessist-core = { version = "=0.6.0", path = "../core" }

anyhow = "1.0"
assert_cmd = "2.0"
Expand Down
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.5.1"
version = "0.6.0"
edition = "2021"

description = "necessist-core"
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.5.1"
version = "0.6.0"
edition = "2021"

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

[dependencies]
necessist-backends = { version = "=0.5.1", path = "../backends" }
necessist-core = { version = "=0.5.1", path = "../core", features = ["clap"] }
necessist-backends = { version = "=0.6.0", path = "../backends" }
necessist-core = { version = "=0.6.0", path = "../core", features = ["clap"] }

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

0 comments on commit e194b77

Please sign in to comment.