Skip to content

Commit 4ff2f22

Browse files
committed
Bump version
1 parent 9e0d8b4 commit 4ff2f22

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

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

3+
## 1.0.1
4+
5+
- Upgrade `tree-sitter-go` to version 0.23.4 ([#1371](https://github.com/trailofbits/necessist/pull/1371))
6+
- Upgrade `swc_core` to version 9 ([#1376](https://github.com/trailofbits/necessist/pull/1376) and [#1393](https://github.com/trailofbits/necessist/pull/1393))
7+
- Refine regular expression used to identify times in Mocha logs ([#1378](https://github.com/trailofbits/necessist/pull/1378))
8+
- Allow Mocha test files to have `.js` extensions ([#1379](https://github.com/trailofbits/necessist/pull/1379))
9+
- Upgrade `cargo_metadata` to version 0.19 ([#1388](https://github.com/trailofbits/necessist/pull/1388))
10+
311
## 1.0.0
412

513
- Fix caching in the Rust backend. The backend was recomputing data that was supposed to be cached. ([#1343](https://github.com/trailofbits/necessist/pull/1343))

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 = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
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.0", path = "../core" }
15+
necessist-core = { version = "=1.0.1", 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 = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
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 = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
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.0", path = "../backends" }
14-
necessist-core = { version = "=1.0.0", path = "../core", features = ["clap"] }
13+
necessist-backends = { version = "=1.0.1", path = "../backends" }
14+
necessist-core = { version = "=1.0.1", path = "../core", features = ["clap"] }
1515

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

0 commit comments

Comments
 (0)