Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Aug 18, 2022
1 parent 524850b commit 3ae0023
Show file tree
Hide file tree
Showing 41 changed files with 130 additions and 116 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.0.12

- Strip current directory when listing libraries ([7268b0a](https://github.com/trailofbits/dylint/commit/7268b0aaedf6b8d52a3e9bf8c5ba24a8a4cd94c6))
- Switch to subcommands ([4b240bc](https://github.com/trailofbits/dylint/commit/4b240bc5037a0feb7317f21a20445bd6e9d54f0c))
- Clone with CLI by default ([#434](https://github.com/trailofbits/dylint/pull/434))
- Upgrade library packages using [`toml_edit`](https://github.com/ordian/toml_edit) ([#436](https://github.com/trailofbits/dylint/pull/436))
- Ensure dylint_driver_manifest_dir.rs is truncated in dylint/build.rs ([524850b](https://github.com/trailofbits/dylint/commit/524850baafebfa62d578d498b660bc0011826bc6))

## 2.0.11

- Fix bug related to package cache locking ([#421](https://github.com/trailofbits/dylint/pull/421))
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.0.11"
version = "2.0.12"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand All @@ -12,8 +12,8 @@ anyhow = "1.0.61"
clap = { version = "3.2.17", features = ["cargo", "derive"] }
env_logger = "0.9.0"

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

[dev-dependencies]
assert_cmd = "2.0.4"
Expand All @@ -29,4 +29,4 @@ tempfile = "3.3.0"
test-log = "0.2.11"
walkdir = "2.3.2"

dylint_internal = { version = "=2.0.11", path = "../internal", features = ["testing"] }
dylint_internal = { version = "=2.0.12", 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.0.11"
version = "2.0.12"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Dylint driver library"
edition = "2021"
Expand All @@ -14,7 +14,7 @@ log = "0.4.17"
rustversion = "1.0.9"
serde_json = "1.0.83"

dylint_internal = { version = "=2.0.11", path = "../internal", features = ["rustup"] }
dylint_internal = { version = "=2.0.12", 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.0.11"
version = "2.0.12"
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,18 +13,18 @@ env_logger = "0.9.0"
if_chain = "1.0.2"
toml_edit = "0.14.4"

dylint_internal = { version = "=2.0.11", path = "../internal", features = ["cargo"] }
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["cargo"] }

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

[dev-dependencies]
assert_cmd = "2.0.4"
predicates = "2.1.1"
tempfile = "3.3.0"
test-log = "0.2.11"

dylint_internal = { version = "=2.0.11", path = "../internal", features = ["packaging"] }
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["packaging"] }

[target.'cfg(target_os = "windows")'.dependencies]
cc = "1.0.73"
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.0.11"
version = "2.0.12"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand Down Expand Up @@ -28,17 +28,17 @@ serde_json = "1.0.83"
tempfile = "3.3.0"
walkdir = "2.3.2"

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

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

[dev-dependencies]
env_logger = "0.9.0"
lazy_static = "1.4.0"
test-log = "0.2.11"

dylint_internal = { version = "=2.0.11", path = "../internal", features = ["examples"] }
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["examples"] }

[features]
default = ["metadata"]
Expand Down
10 changes: 5 additions & 5 deletions examples/general/await_holding_span_guard/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/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.0.11"
version = "2.0.12"
authors = ["David Barsky"]
description = "A lint to check for Span guards held while calling await inside an async function"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions examples/general/crate_wide_allow/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/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.0.11"
version = "2.0.12"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `#![allow(...)]` used at the crate level"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions examples/general/env_cargo_path/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/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.0.11"
version = "2.0.12"
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
10 changes: 5 additions & 5 deletions examples/general/non_local_effect_before_error_return/Cargo.lock

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

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "non_local_effect_before_error_return"
version = "2.0.11"
version = "2.0.12"
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
Loading

0 comments on commit 3ae0023

Please sign in to comment.