Skip to content

Commit fdfb59f

Browse files
committed
Bump version
1 parent 8a51fe6 commit fdfb59f

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 2.0.0
4+
5+
- Update `strum` to version 0.27 ([#1439](https://github.com/trailofbits/necessist/pull/1439))
6+
- Update `strum_macros` to version 0.27 ([#1442](https://github.com/trailofbits/necessist/pull/1442))
7+
- Fix a bug that caused TypeScript files with tab characters to be mishandled ([#1464](https://github.com/trailofbits/necessist/pull/1464))
8+
- Ignore `throw` statements in Mocha-based tests ([efae165](https://github.com/trailofbits/necessist/commit/efae16577f99f358a1025d5a17710a318e4e0a52))
9+
- Peel `FunctionCallBlock` expressions in Foundry backend ([36c4855](https://github.com/trailofbits/necessist/commit/36c4855d81a23a59ffb5cc945e426cfa7cc912d0))
10+
- BREAKING CHANGE: Eliminate `--no-dry-run` option. During a dry run, Necessist records which tests execute which spans. This information facilitates testing span removals, because only the test(s) relevant to a span must be executed. ([#1472](https://github.com/trailofbits/necessist/pull/1472))
11+
- Add experimental `--dump-candidate-counts` option ([#1468](https://github.com/trailofbits/necessist/pull/1468))
12+
- Update `libsqlite3-sys` to version 0.31 ([#1479](https://github.com/trailofbits/necessist/pull/1479))
13+
- Add support for the Vitest framework ([#1475](https://github.com/trailofbits/necessist/pull/1475))
14+
- Update `swc_core` to version 0.16 ([#1478](https://github.com/trailofbits/necessist/pull/1478))
15+
316
## 1.0.4
417

518
- Upgrade `tree-sitter` to version 0.25 ([#1435](https://github.com/trailofbits/necessist/pull/1435))

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backends/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-backends"
3-
version = "1.0.4"
3+
version = "2.0.0"
44
edition = "2024"
55

66
description = "necessist-backends"
@@ -12,7 +12,7 @@ repository = "https://github.com/trailofbits/necessist"
1212
build = "build/main.rs"
1313

1414
[dependencies]
15-
necessist-core = { version = "=1.0.4", path = "../core" }
15+
necessist-core = { version = "=2.0.0", path = "../core" }
1616

1717
anyhow = "1.0"
1818
assert_cmd = "2.0"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-core"
3-
version = "1.0.4"
3+
version = "2.0.0"
44
edition = "2024"
55

66
description = "necessist-core"

necessist/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist"
3-
version = "1.0.4"
3+
version = "2.0.0"
44
edition = "2024"
55

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

1212
[dependencies]
13-
necessist-backends = { version = "=1.0.4", path = "../backends" }
14-
necessist-core = { version = "=1.0.4", path = "../core", features = ["clap"] }
13+
necessist-backends = { version = "=2.0.0", path = "../backends" }
14+
necessist-core = { version = "=2.0.0", path = "../core", features = ["clap"] }
1515

1616
anyhow = { version = "1.0", features = ["backtrace"] }
1717
clap = "4.5"

0 commit comments

Comments
 (0)