Skip to content

Commit

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

## 1.0.1

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

## 1.0.0

- 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))
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 = "1.0.0"
version = "1.0.1"
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 = "=1.0.0", path = "../core" }
necessist-core = { version = "=1.0.1", 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 = "1.0.0"
version = "1.0.1"
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 = "1.0.0"
version = "1.0.1"
edition = "2021"

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

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

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

0 comments on commit 4ff2f22

Please sign in to comment.