Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Oct 6, 2023
1 parent 366cfb4 commit 69a4dca
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.3.0

- Ignore `Skip`, `Skipf`, and `SkipNow` methods in Go framework ([#759](https://github.com/trailofbits/necessist/pull/759) and [#760](https://github.com/trailofbits/necessist/pull/760))
- [94e81c6](https://github.com/trailofbits/necessist/commit/94e81c6f6343ae4fc4ecce37ee494d914ffa668e) unintentionally removed `recursive_kill`'s post-visit behavior. [381a0ff](https://github.com/trailofbits/necessist/commit/381a0fff77233db5a89edc8f88983d69ebc9a64e) restores the post-visit behavior, but retains the non-recursiveness that [94e81c6](https://github.com/trailofbits/necessist/commit/94e81c6f6343ae4fc4ecce37ee494d914ffa668e) introduced. ([381a0ff](https://github.com/trailofbits/necessist/commit/381a0fff77233db5a89edc8f88983d69ebc9a64e))
- Add ability to ignore tests ([#798](https://github.com/trailofbits/necessist/pull/798))
- Lock project's root directory to help protect against concurrent uses of Necessist ([#791](https://github.com/trailofbits/necessist/pull/791))

## 0.2.3

- Limit the number of threads a test can allocate ([275b097](https://github.com/trailofbits/necessist/commit/275b0977c2d440f695ab0222b8447e8fffed7b9d))
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-core"
version = "0.2.3"
version = "0.3.0"
edition = "2021"

description = "necessist-core"
Expand Down
7 changes: 4 additions & 3 deletions crates_io/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist"
version = "0.2.3"
version = "0.3.0"
edition = "2021"

description = "necessist"
Expand All @@ -10,8 +10,8 @@ license = "AGPL-3.0"
repository = "https://github.com/trailofbits/necessist"

[dependencies]
necessist-core = { version = "=0.2.3", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.2.3", path = "../frameworks" }
necessist-core = { version = "=0.3.0", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.3.0", path = "../frameworks" }

anyhow = { version = "1.0", features = ["backtrace"] }
clap = "4.4"
Expand Down
4 changes: 2 additions & 2 deletions frameworks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-frameworks"
version = "0.2.3"
version = "0.3.0"
edition = "2021"

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

[dependencies]
necessist-core = { version = "=0.2.3", path = "../core" }
necessist-core = { version = "=0.3.0", path = "../core" }

anyhow = "1.0"
assert_cmd = "2.0"
Expand Down
6 changes: 3 additions & 3 deletions necessist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist"
version = "0.2.3"
version = "0.3.0"
edition = "2021"

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

[dependencies]
necessist-core = { version = "=0.2.3", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.2.3", path = "../frameworks" }
necessist-core = { version = "=0.3.0", path = "../core", features = ["clap"] }
necessist-frameworks = { version = "=0.3.0", path = "../frameworks" }

anyhow = { version = "1.0", features = ["backtrace"] }
clap = "4.4"
Expand Down

0 comments on commit 69a4dca

Please sign in to comment.