Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Sep 1, 2024
1 parent f297a70 commit d20fb6c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.0

- Update `libsqlite3-sys` to version 0.30 ([#1260](https://github.com/trailofbits/necessist/pull/1260))
- Update `swc_core` to version 0.102 ([#1263](https://github.com/trailofbits/necessist/pull/1263))
- Do not consider `TestMain` a test in Go backend ([#1266](https://github.com/trailofbits/necessist/pull/1266))
- Add `Helper` as an ignored method in the Go backend ([#1276](https://github.com/trailofbits/necessist/pull/1276))
- FEATURE: Walk functions that are declared within the same files as the tests that call them ([#1268](https://github.com/trailofbits/necessist/pull/1268))
- Update `tree-sitter` and `tree-sitter-go` to version 0.23 ([#1279](https://github.com/trailofbits/necessist/pull/1279))

## 0.6.4

- Update `windows-sys` to version 0.59 ([#1231](https://github.com/trailofbits/necessist/pull/1231))
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.

4 changes: 2 additions & 2 deletions backends/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "necessist-backends"
version = "0.6.4"
version = "0.7.0"
edition = "2021"

description = "necessist-backends"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/trailofbits/necessist"
build = "build/main.rs"

[dependencies]
necessist-core = { version = "=0.6.4", path = "../core" }
necessist-core = { version = "=0.7.0", path = "../core" }

anyhow = "1.0"
assert_cmd = "2.0"
Expand Down
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.6.4"
version = "0.7.0"
edition = "2021"

description = "necessist-core"
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.6.4"
version = "0.7.0"
edition = "2021"

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

[dependencies]
necessist-backends = { version = "=0.6.4", path = "../backends" }
necessist-core = { version = "=0.6.4", path = "../core", features = ["clap"] }
necessist-backends = { version = "=0.7.0", path = "../backends" }
necessist-core = { version = "=0.7.0", path = "../core", features = ["clap"] }

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

0 comments on commit d20fb6c

Please sign in to comment.