Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Sep 14, 2023
1 parent e9cf2b3 commit 674c878
Show file tree
Hide file tree
Showing 57 changed files with 163 additions and 156 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.4.0

- Update `cargo-dylint` and `dylint` MSRVs ([d42a7a0](https://github.com/trailofbits/dylint/commit/d42a7a076b5f4118fc9dffc9b932f228d4a79bc9))
- Specify MSRV policy ([#835](https://github.com/trailofbits/dylint/pull/835))
- Make `cargo dylint update` work when `clippy_utils` is a workspace dependency, as opposed to just when it is a package dependency (bugfix) ([36d94ed](https://github.com/trailofbits/dylint/commit/36d94ed9f8a6f190e7f90d064846585b2a69c8fc))
- Don't canonicalize paths passed to Cargo in `dylint_linting` (bugfix) ([d6b0356](https://github.com/trailofbits/dylint/commit/d6b0356f2457c41eb15207af08e8e80b5d29f525))

## 2.3.0

- Add `--pipe-stderr` and `--pipe-stdout` options ([#822](https://github.com/trailofbits/dylint/pull/822))—thanks [@faculerena](https://github.com/faculerena)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions cargo-dylint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-dylint"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand All @@ -13,8 +13,8 @@ anyhow = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.3", features = ["cargo", "derive", "wrap_help"] }
env_logger = "0.10"

dylint = { version = "=2.3.0", path = "../dylint", features = ["package_options"] }
dylint_internal = { version = "=2.3.0", path = "../internal" }
dylint = { version = "=2.4.0", path = "../dylint", features = ["package_options"] }
dylint_internal = { version = "=2.4.0", path = "../internal" }

[dev-dependencies]
assert_cmd = "2.0"
Expand All @@ -32,4 +32,4 @@ similar-asserts = "1.5"
tempfile = "3.8"
walkdir = "2.4"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["testing"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["testing"] }
4 changes: 2 additions & 2 deletions driver/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 driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint_driver"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Dylint driver library"
edition = "2021"
Expand All @@ -15,7 +15,7 @@ log = "0.4"
rustversion = "1.0"
serde_json = "1.0"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["rustup"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["rustup"] }

[workspace]

Expand Down
8 changes: 4 additions & 4 deletions dylint-link/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint-link"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A wrapper around Rust's default linker to help create Dyling libraries"
edition = "2021"
Expand All @@ -13,17 +13,17 @@ env_logger = "0.10"
if_chain = "1.0"
toml_edit = "0.19"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["cargo"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["cargo"] }

[build-dependencies]
dylint_internal = { version = "=2.3.0", path = "../internal" }
dylint_internal = { version = "=2.4.0", path = "../internal" }

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["packaging"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["packaging"] }

[target.'cfg(target_os = "windows")'.dependencies]
cc = "1.0"
8 changes: 4 additions & 4 deletions dylint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand Down Expand Up @@ -30,15 +30,15 @@ tempfile = "3.8"
toml = { version = "0.7", optional = true }
walkdir = "2.4"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }

[build-dependencies]
dylint_internal = { version = "=2.3.0", path = "../internal", features = ["cargo"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["cargo"] }

[dev-dependencies]
env_logger = "0.10"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["examples"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["examples"] }

[features]
default = ["metadata"]
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "2.3.0"
version = "2.4.0"
description = "A dummy package for testing the example Dylint libraries"
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -12,4 +12,4 @@ cargo_metadata = "0.17"
toml_edit = "0.19"
walkdir = "2.4"

dylint_internal = { version = "=2.3.0", path = "../internal", features = ["clippy_utils", "examples"] }
dylint_internal = { version = "=2.4.0", path = "../internal", features = ["clippy_utils", "examples"] }
20 changes: 10 additions & 10 deletions examples/general/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 examples/general/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "general"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "General-purpose lints"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/general/await_holding_span_guard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "await_holding_span_guard"
version = "2.3.0"
version = "2.4.0"
authors = ["David Barsky"]
description = "A lint to check for Span guards held while calling await inside an async function"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/general/crate_wide_allow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crate_wide_allow"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `#![allow(...)]` used at the crate level"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/general/env_cargo_path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "env_cargo_path"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `env!` applied to Cargo environment variables containing paths"
edition = "2021"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "non_local_effect_before_error_return"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for non-local effects before return of an error"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/general/non_thread_safe_call_in_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "non_thread_safe_call_in_test"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for non-thread-safe function calls in tests"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions examples/restriction/assert_eq_arg_misordering/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 examples/restriction/assert_eq_arg_misordering/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "assert_eq_arg_misordering"
version = "2.3.0"
version = "2.4.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `assert_eq!(actual, expected)`"
edition = "2021"
Expand Down
Loading

0 comments on commit 674c878

Please sign in to comment.