Skip to content

Commit 80bf986

Browse files
committed
Bump version
1 parent 02c2a57 commit 80bf986

File tree

45 files changed

+134
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+134
-130
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.1.3
4+
5+
- Set rust-analyzer's `rustc_private=true` in `dylint_linting` package metadata ([#543](https://github.com/trailofbits/dylint/pull/543))
6+
37
## 2.1.2
48

59
- Rerun `cargo check` when library code changes ([6235e99](https://github.com/trailofbits/dylint/commit/6235e9993aa374a8a568fbbda4c333d718985835))

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-dylint/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-dylint"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
55
description = "A tool for running Rust lints from dynamic libraries"
66
edition = "2021"
@@ -12,8 +12,8 @@ anyhow = "1.0"
1212
clap = { version = "4.1", features = ["cargo", "derive", "wrap_help"] }
1313
env_logger = "0.10"
1414

15-
dylint = { version = "=2.1.2", path = "../dylint", features = ["package_options"] }
16-
dylint_internal = { version = "=2.1.2", path = "../internal" }
15+
dylint = { version = "=2.1.3", path = "../dylint", features = ["package_options"] }
16+
dylint_internal = { version = "=2.1.3", path = "../internal" }
1717

1818
[dev-dependencies]
1919
assert_cmd = "2.0"
@@ -29,4 +29,4 @@ tempfile = "3.3"
2929
test-log = "0.2"
3030
walkdir = "2.3"
3131

32-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["testing"] }
32+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["testing"] }

driver/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

driver/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dylint_driver"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
55
description = "Dylint driver library"
66
edition = "2021"
@@ -14,7 +14,7 @@ log = "0.4"
1414
rustversion = "1.0"
1515
serde_json = "1.0"
1616

17-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["rustup"] }
17+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["rustup"] }
1818

1919
[workspace]
2020

dylint-link/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dylint-link"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
55
description = "A wrapper around Rust's default linker to help create Dyling libraries"
66
edition = "2021"
@@ -13,18 +13,18 @@ env_logger = "0.10"
1313
if_chain = "1.0"
1414
toml_edit = "0.17"
1515

16-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["cargo"] }
16+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["cargo"] }
1717

1818
[build-dependencies]
19-
dylint_internal = { version = "=2.1.2", path = "../internal" }
19+
dylint_internal = { version = "=2.1.3", path = "../internal" }
2020

2121
[dev-dependencies]
2222
assert_cmd = "2.0"
2323
predicates = "2.1"
2424
tempfile = "3.3"
2525
test-log = "0.2"
2626

27-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["packaging"] }
27+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["packaging"] }
2828

2929
[target.'cfg(target_os = "windows")'.dependencies]
3030
cc = "1.0"

dylint/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dylint"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
55
description = "A tool for running Rust lints from dynamic libraries"
66
edition = "2021"
@@ -28,17 +28,17 @@ serde_json = "1.0"
2828
tempfile = "3.3"
2929
walkdir = "2.3"
3030

31-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
31+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
3232

3333
[build-dependencies]
34-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["cargo"] }
34+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["cargo"] }
3535

3636
[dev-dependencies]
3737
env_logger = "0.10"
3838
lazy_static = "1.4"
3939
test-log = "0.2"
4040

41-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["examples"] }
41+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["examples"] }
4242

4343
[features]
4444
default = ["metadata"]

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
description = "A dummy package for testing the example Dylint libraries"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -9,4 +9,4 @@ publish = false
99
[dev-dependencies]
1010
cargo_metadata = "0.15"
1111

12-
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["clippy_utils", "examples"] }
12+
dylint_internal = { version = "=2.1.3", path = "../internal", features = ["clippy_utils", "examples"] }

examples/general/await_holding_span_guard/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/general/await_holding_span_guard/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "await_holding_span_guard"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["David Barsky"]
55
description = "A lint to check for Span guards held while calling await inside an async function"
66
edition = "2021"

0 commit comments

Comments
 (0)