Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed May 28, 2022
1 parent 3cd5ef0 commit 9aabf6c
Show file tree
Hide file tree
Showing 34 changed files with 100 additions and 94 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.0.3

- Error when metadata entry names a nonexistent library ([#317](https://github.com/trailofbits/dylint/pull/317))
- Enable cross compilation ([#322](https://github.com/trailofbits/dylint/pull/322))—idea due to [@danielhenrymantilla](https://github.com/danielhenrymantilla) ([#28](https://github.com/trailofbits/dylint/issues/28))
- Rename `--force` to `--allow-downgrade` ([#331](https://github.com/trailofbits/dylint/pull/331) and [#333](https://github.com/trailofbits/dylint/pull/333))

## 2.0.2

- Make `--new` work with new macros ([#298](https://github.com/trailofbits/dylint/pull/298))
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.

6 changes: 3 additions & 3 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.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2018"
Expand All @@ -12,8 +12,8 @@ anyhow = "1.0.57"
clap = { version = "3.1.18", features = ["cargo", "derive"] }
env_logger = "0.9.0"

dylint = { version = "=2.0.2", path = "../dylint", features = ["dylint_driver_local", "package_options"] }
dylint_internal = { version = "=2.0.2", path = "../internal", features = ["git2"] }
dylint = { version = "=2.0.3", path = "../dylint", features = ["dylint_driver_local", "package_options"] }
dylint_internal = { version = "=2.0.3", path = "../internal", features = ["git2"] }

[dev-dependencies]
assert_cmd = "2.0.4"
Expand Down
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.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Dylint driver library"
edition = "2018"
Expand All @@ -13,7 +13,7 @@ libloading = "0.7.3"
log = "0.4.17"
serde_json = "1.0.81"

dylint_internal = { version = "=2.0.2", path = "../internal" }
dylint_internal = { version = "=2.0.3", path = "../internal" }

[workspace]

Expand Down
4 changes: 2 additions & 2 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.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A wrapper around Rust's default linker to help create Dyling libraries"
edition = "2018"
Expand All @@ -12,7 +12,7 @@ anyhow = "1.0.57"
env_logger = "0.9.0"
if_chain = "1.0.2"

dylint_internal = { version = "=2.0.2", path = "../internal" }
dylint_internal = { version = "=2.0.3", path = "../internal" }

[target.'cfg(target_os = "windows")'.dependencies]
cc = "1.0.73"
4 changes: 2 additions & 2 deletions dylint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint"
version = "2.0.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2018"
Expand Down Expand Up @@ -31,7 +31,7 @@ tempfile = "3.3.0"
toml_edit = { version = "0.14.4", optional = true }
walkdir = "2.3.2"

dylint_internal = { version = "=2.0.2", path = "../internal" }
dylint_internal = { version = "=2.0.3", path = "../internal" }

[dev-dependencies]
env_logger = "0.9.0"
Expand Down
10 changes: 5 additions & 5 deletions examples/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/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.2"
version = "2.0.3"
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/clippy/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/clippy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "2.0.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "All of the Clippy lints as a Dylint library"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions examples/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/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.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `#![allow(...)]` used at the crate level"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions examples/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/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.2"
version = "2.0.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for `env!` applied to Cargo environment variables containing paths"
edition = "2018"
Expand Down
Loading

0 comments on commit 9aabf6c

Please sign in to comment.