Skip to content

Commit ba8967d

Browse files
committed
Bump version
1 parent 7212bab commit ba8967d

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

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

3+
## 0.4.2
4+
5+
- Give an example when "configuration or test files have changed" (fix [#248](https://github.com/trailofbits/necessist/issues/248)) ([#936](https://github.com/trailofbits/necessist/pull/936))
6+
- Make `--resume` work correctly following a dry run failure (fix [#249](https://github.com/trailofbits/necessist/issues/249)) ([#936](https://github.com/trailofbits/necessist/pull/936))
7+
- Make parsing failures warnings instead of hard errors (fix [#245](https://github.com/trailofbits/necessist/issues/245)) ([#947](https://github.com/trailofbits/necessist/pull/947))
8+
39
## 0.4.1
410

511
- Update `windows-sys` to version 0.52.0 ([#911](https://github.com/trailofbits/necessist/pull/911))

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.

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 = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55

66
description = "necessist-core"

frameworks/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-frameworks"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55

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

1212
[dependencies]
13-
necessist-core = { version = "=0.4.1", path = "../core" }
13+
necessist-core = { version = "=0.4.2", path = "../core" }
1414

1515
anyhow = "1.0"
1616
assert_cmd = "2.0"

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

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

0 commit comments

Comments
 (0)