Skip to content

Commit 0699494

Browse files
committed
Bump version
1 parent d6ba929 commit 0699494

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed

CHANGELOG.md

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

3+
## 2.2.0
4+
5+
- Add experimental `--no-lines-or-columns` option ([4846795](https://github.com/trailofbits/necessist/commit/48467958bf8395e629c5c3fca65adf527e3916ce))
6+
- Add support for PHP ([c414a50](https://github.com/trailofbits/necessist/commit/c414a50f732cc70dc3333a856a84ba6ac2927801), [dec887d](https://github.com/trailofbits/necessist/commit/dec887d78182973dc589d31ef58973bbccad7838), and [81eafd5](https://github.com/trailofbits/necessist/commit/81eafd50f09990349600a0bf82ec93cf517da87e))
7+
- Dependency updates
8+
- `strum_macros` upgraded to version 0.28
9+
- `strum` upgraded to version 0.28
10+
- `subprocess` upgraded to version 1.0
11+
- `swc_core` upgraded to version 58.0
12+
- `toml_edit` upgraded to version 0.25
13+
- `toml` upgraded to version 1.0
14+
- `tree-sitter` upgraded to version 0.26
15+
316
## 2.1.3
417

518
- Expand `is_it_call_expr` to work with `function` expressions ([b9771db](https://github.com/trailofbits/necessist/commit/b9771dbf302f3551e0c375a81aab08dcdc048293))

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.3"
3+
version = "2.2.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 = "=2.1.3", path = "../core" }
15+
necessist-core = { version = "=2.2.0", path = "../core" }
1616

1717
anyhow = "1.0"
1818
assert_cmd = "2.2"

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.3"
3+
version = "2.2.0"
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.3"
3+
version = "2.2.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 = "=2.1.3", path = "../backends" }
14-
necessist-core = { version = "=2.1.3", path = "../core", features = ["clap"] }
13+
necessist-backends = { version = "=2.2.0", path = "../backends" }
14+
necessist-core = { version = "=2.2.0", path = "../core", features = ["clap"] }
1515

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

0 commit comments

Comments
 (0)