Skip to content

Commit 4e96e0f

Browse files
committed
Bump version
1 parent 7ca26f4 commit 4e96e0f

File tree

5 files changed

+18
-9
lines changed

5 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 2.1.3
4+
5+
- Expand `is_it_call_expr` to work with `function` expressions ([b9771db](https://github.com/trailofbits/necessist/commit/b9771dbf302f3551e0c375a81aab08dcdc048293))
6+
- Expand `it` messages that Mocha backend can detect ([9c13b2e](https://github.com/trailofbits/necessist/commit/9c13b2eecd682ff6060ba0c2eece0dbb2a3d1a92))
7+
- Return reasons for build failures ([85fce01](https://github.com/trailofbits/necessist/commit/85fce012cb010e96dac32a52b675c965ce91977d))
8+
- Upgrade `swc_core` to version 47 ([4ed813f](https://github.com/trailofbits/necessist/commit/4ed813fa06dc17e4657d6ea67c2134cb7c3ddf51))
9+
- In Foundry backend, track `bytes` rather than `chars` ([bd10591](https://github.com/trailofbits/necessist/commit/bd10591eed4af983d2ac18af03cb6877a7243b61))
10+
- Skip `pure` functions in Foundry backend ([fc57bf6](https://github.com/trailofbits/necessist/commit/fc57bf60c01902d00f2186f66905f447fb8aacf9))
11+
312
## 2.1.2
413

514
- Upgrade dependencies, including:

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backends/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-backends"
3-
version = "2.1.2"
3+
version = "2.1.3"
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 = "=2.1.2", path = "../core" }
15+
necessist-core = { version = "=2.1.3", path = "../core" }
1616

1717
anyhow = "1.0"
1818
assert_cmd = "2.1"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-core"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
edition = "2024"
55

66
description = "necessist-core"

necessist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist"
3-
version = "2.1.2"
3+
version = "2.1.3"
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 = "=2.1.2", path = "../backends" }
14-
necessist-core = { version = "=2.1.2", path = "../core", features = ["clap"] }
13+
necessist-backends = { version = "=2.1.3", path = "../backends" }
14+
necessist-core = { version = "=2.1.3", path = "../core", features = ["clap"] }
1515

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

0 commit comments

Comments
 (0)