Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #1503

Merged
merged 2 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.4.1

- Account for [rust-lang/rust#135880](https://github.com/rust-lang/rust/pull/135880) ([#1501](https://github.com/trailofbits/dylint/pull/1501))
- Eliminate reliance on `is-terminal` ([#1502](https://github.com/trailofbits/dylint/pull/1502))

## 3.4.0

- Add link to EuroRust 2024 video ([#1447](https://github.com/trailofbits/dylint/pull/1447))
Expand Down
38 changes: 19 additions & 19 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 = "3.4.0"
version = "3.4.1"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand All @@ -16,10 +16,10 @@ anyhow = { workspace = true, features = ["backtrace"] }
clap = { workspace = true, features = ["cargo", "derive", "wrap_help"] }
env_logger = { workspace = true }

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

[dev-dependencies]
assert_cmd = { workspace = true }
Expand All @@ -36,7 +36,7 @@ similar-asserts = { workspace = true }
tempfile = { workspace = true }
walkdir = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"examples",
"testing",
] }
Expand Down
8 changes: 4 additions & 4 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 = "3.4.0"
version = "3.4.1"
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 = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"rustup",
] }

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 = "3.4.0"
version = "3.4.1"
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,19 +13,19 @@ env_logger = { workspace = true }
if_chain = { workspace = true }
toml_edit = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"cargo",
] }

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

[dev-dependencies]
assert_cmd = { workspace = true }
predicates = { workspace = true }
tempfile = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"packaging",
] }

Expand Down
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 = "3.4.0"
version = "3.4.1"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand Down Expand Up @@ -43,7 +43,7 @@ toml = { workspace = true, optional = true }
url = { workspace = true, optional = true }
walkdir = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"config",
"git",
"packaging",
Expand All @@ -52,14 +52,14 @@ dylint_internal = { version = "=3.4.0", path = "../internal", features = [
] }

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

[dev-dependencies]
env_logger = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"examples",
] }

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 = "dylint_examples"
version = "3.4.0"
version = "3.4.1"
description = "A dummy package for testing the example Dylint libraries"
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -12,7 +12,7 @@ cargo_metadata = { workspace = true }
toml_edit = { workspace = true }
walkdir = { workspace = true }

dylint_internal = { version = "=3.4.0", path = "../internal", features = [
dylint_internal = { version = "=3.4.1", path = "../internal", features = [
"clippy_utils",
"examples",
] }
Expand Down
26 changes: 13 additions & 13 deletions examples/experimental/derive_opportunity/Cargo.lock

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

Loading
Loading