Skip to content

Commit 949f268

Browse files
committed
Bump version
1 parent 75190fb commit 949f268

File tree

55 files changed

+166
-160
lines changed

Some content is hidden

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

55 files changed

+166
-160
lines changed

CHANGELOG.md

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

3+
## 2.1.8
4+
5+
- Allow libraries to use thread local storage ([3db9dda](https://github.com/trailofbits/dylint/commit/3db9dda14ecb939ff019f1b6c27c5515df91bfaa))
6+
- Fix a bug causing false "invalid pattern" errors on Windows ([49e0353](https://github.com/trailofbits/dylint/commit/49e0353b3a590554d0ee79ff1f86f5ed24e1039c))
7+
- Don't treat unbuilt libraries as errors when listing libraries ([75190fb](https://github.com/trailofbits/dylint/commit/75190fbdc39cc29b152737a32959d00c17980b2e))
8+
39
## 2.1.7
410

511
- Update dependencies, including `openssl` to version 0.10.48 ([#652](https://github.com/trailofbits/dylint/pull/652))

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.7"
3+
version = "2.1.8"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "A tool for running Rust lints from dynamic libraries"
66
edition = "2021"
@@ -12,8 +12,8 @@ anyhow = { version = "1.0", features = ["backtrace"] }
1212
clap = { version = "4.2", features = ["cargo", "derive", "wrap_help"] }
1313
env_logger = "0.10"
1414

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

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

32-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["testing"] }
32+
dylint_internal = { version = "=2.1.8", 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.7"
3+
version = "2.1.8"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "Dylint driver library"
66
edition = "2021"
@@ -15,7 +15,7 @@ log = "0.4"
1515
rustversion = "1.0"
1616
serde_json = "1.0"
1717

18-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["rustup"] }
18+
dylint_internal = { version = "=2.1.8", path = "../internal", features = ["rustup"] }
1919

2020
[workspace]
2121

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.7"
3+
version = "2.1.8"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
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.19"
1515

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

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

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

27-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["packaging"] }
27+
dylint_internal = { version = "=2.1.8", 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.7"
3+
version = "2.1.8"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "A tool for running Rust lints from dynamic libraries"
66
edition = "2021"
@@ -31,17 +31,17 @@ tempfile = "3.5"
3131
toml = { version = "0.7", optional = true }
3232
walkdir = "2.3"
3333

34-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
34+
dylint_internal = { version = "=2.1.8", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
3535

3636
[build-dependencies]
37-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["cargo"] }
37+
dylint_internal = { version = "=2.1.8", path = "../internal", features = ["cargo"] }
3838

3939
[dev-dependencies]
4040
env_logger = "0.10"
4141
lazy_static = "1.4"
4242
test-log = "0.2"
4343

44-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["examples"] }
44+
dylint_internal = { version = "=2.1.8", path = "../internal", features = ["examples"] }
4545

4646
[features]
4747
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.7"
3+
version = "2.1.8"
44
description = "A dummy package for testing the example Dylint libraries"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -11,4 +11,4 @@ cargo_metadata = "0.15"
1111
toml_edit = "0.19"
1212
walkdir = "2.3"
1313

14-
dylint_internal = { version = "=2.1.7", path = "../internal", features = ["clippy_utils", "examples"] }
14+
dylint_internal = { version = "=2.1.8", 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.7"
3+
version = "2.1.8"
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)