Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Dec 18, 2024
1 parent 1de6ca2 commit 190f63c
Show file tree
Hide file tree
Showing 58 changed files with 145 additions and 136 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 3.3.0

- Add EuroRust 2024 slides to README.md ([#1370](https://github.com/trailofbits/dylint/pull/1370))
- Upgrade `cargo-util-schemas` to version 0.7 ([#1394](https://github.com/trailofbits/dylint/pull/1394) and [#1429](https://github.com/trailofbits/dylint/pull/1429))
- Upgrade `cargo_metadata` to version 0.19 ([8a7bc95](https://github.com/trailofbits/dylint/commit/8a7bc9575875c50da2acae390be0f5a611103a38))
- Bump `dylint`'s MSRV to 1.78 ([c4c27d1](https://github.com/trailofbits/dylint/commit/c4c27d1e9969e9f1c0a097223fa99fd2a30c0a6d))
- Upgrade `thiserror` to version 2 ([7398557](https://github.com/trailofbits/dylint/commit/73985574c95ba2c512df4c1b25ebe1aab0a05e92))
- Remove mention of `rustc_attr` from Dylint library template, as the crate was [recently renamed](https://github.com/rust-lang/rust/pull/134381) ([#1446](https://github.com/trailofbits/dylint/pull/1446))

## 3.2.1

- Enable drivers to be installed concurrently. Previously, an attempt to install a driver would fail if the existing driver was running. ([4438f40](https://github.com/trailofbits/dylint/commit/4438f402591d05e369636f54e18b4bab232702b5) and [231974a](https://github.com/trailofbits/dylint/commit/231974a7b94d2c22e85227998a6bc8fd94c5cd0f))
Expand Down
14 changes: 7 additions & 7 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.2.1"
version = "3.3.0"
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 = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.5", features = ["cargo", "derive", "wrap_help"] }
env_logger = "0.11"

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

[dev-dependencies]
assert_cmd = "2.0"
Expand All @@ -37,7 +37,7 @@ similar-asserts = "1.6"
tempfile = "3.14"
walkdir = "2.5"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", path = "../internal", features = [
"examples",
"testing",
] }
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 = "3.2.1"
version = "3.3.0"
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.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", 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.2.1"
version = "3.3.0"
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 = "0.11"
if_chain = "1.0"
toml_edit = "0.22"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", path = "../internal", features = [
"cargo",
] }

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

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.14"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", 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.2.1"
version = "3.3.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand Down Expand Up @@ -38,7 +38,7 @@ toml = { version = "0.8", optional = true }
url = { version = "2.5", optional = true }
walkdir = "2.5"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", path = "../internal", features = [
"config",
"git",
"packaging",
Expand All @@ -47,14 +47,14 @@ dylint_internal = { version = "=3.2.1", path = "../internal", features = [
] }

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

[dev-dependencies]
env_logger = "0.11"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", 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.2.1"
version = "3.3.0"
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 = "0.19"
toml_edit = "0.22"
walkdir = "2.5"

dylint_internal = { version = "=3.2.1", path = "../internal", features = [
dylint_internal = { version = "=3.3.0", path = "../internal", features = [
"clippy_utils",
"examples",
] }
Expand Down
10 changes: 5 additions & 5 deletions examples/experimental/derive_opportunity/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/experimental/derive_opportunity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_opportunity"
version = "3.2.1"
version = "3.3.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for traits that could be derived"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions examples/experimental/missing_doc_comment_openai/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 = "missing_doc_comment_openai"
version = "3.2.1"
version = "3.3.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint that suggests doc comments using OpenAI"
edition = "2021"
Expand Down
Loading

0 comments on commit 190f63c

Please sign in to comment.