Skip to content

Commit d7dad1b

Browse files
committed
Bump version
1 parent 8e7ef1d commit d7dad1b

File tree

7 files changed

+21
-36
lines changed

7 files changed

+21
-36
lines changed

CHANGELOG.md

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

3+
## 0.1.2
4+
5+
- Migrate away from `atty` ([#556](https://github.com/trailofbits/necessist/pull/556))
6+
- Improve Rust test discovery ([#537](https://github.com/trailofbits/necessist/pull/537))
7+
38
## 0.1.1
49

510
- Improve Foundry support ([#515](https://github.com/trailofbits/necessist/pull/515))

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.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55

66
description = "necessist-core"

crates_io/Cargo.lock

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

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

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

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.1.1"
3+
version = "0.1.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.1.1", path = "../core" }
13+
necessist-core = { version = "=0.1.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.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55

66
description = "necessist"
@@ -15,8 +15,8 @@ path = "tests/ci.rs"
1515
required-features = ["ci"]
1616

1717
[dependencies]
18-
necessist-core = { version = "=0.1.1", path = "../core", features = ["clap"] }
19-
necessist-frameworks = { version = "=0.1.1", path = "../frameworks" }
18+
necessist-core = { version = "=0.1.2", path = "../core", features = ["clap"] }
19+
necessist-frameworks = { version = "=0.1.2", path = "../frameworks" }
2020

2121
anyhow = { version = "1.0", features = ["backtrace"] }
2222
clap = { version = "4.3" }

0 commit comments

Comments
 (0)