Skip to content

Commit 2ec8e67

Browse files
committed
Bump version
1 parent 9d9ec66 commit 2ec8e67

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

CHANGELOG.md

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

3+
## 2.1.2
4+
5+
- Upgrade dependencies, including:
6+
- `indicatif` to version 0.18 ([#1595](https://github.com/trailofbits/necessist/pull/1595))
7+
- `libsqlite3-sys` to version 0.35 ([#1610](https://github.com/trailofbits/necessist/pull/1610))
8+
- `solang-parser` to version 0.3.5 ([#1587](https://github.com/trailofbits/necessist/pull/1587))
9+
- `swc_core` to version 38 ([#1659](https://github.com/trailofbits/necessist/pull/1659))
10+
- `toml` to version 0.9 ([#1617](https://github.com/trailofbits/necessist/pull/1617))
11+
- `toml_edit` to version 0.23 ([#1609](https://github.com/trailofbits/necessist/pull/1609))
12+
- `tree-sitter-go` to version 0.25 ([#1660](https://github.com/trailofbits/necessist/pull/1660))
13+
- `windows-sys` to version 0.60 ([#1580](https://github.com/trailofbits/necessist/pull/1580))
14+
- Add "Running" section to README.md ([#1638](https://github.com/trailofbits/necessist/pull/1638))—thanks [@fcasal](https://github.com/fcasal) for the suggestion
15+
- Eliminate use of `if_chain` ([#1645](https://github.com/trailofbits/necessist/pull/1645))
16+
317
## 2.1.1
418

519
- Fix typo in "Configuration files" section of README.md ([#1538](https://github.com/trailofbits/necessist/pull/1538))—thanks [@jasonpetro](https://github.com/jasonpetro)

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

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

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

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

0 commit comments

Comments
 (0)