Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jan 12, 2024
1 parent 1ffeac5 commit 5c02be9
Show file tree
Hide file tree
Showing 55 changed files with 166 additions and 126 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.6.0

- Add experimental `metadata-cli` feature ([#926](https://github.com/trailofbits/dylint/pull/926) and [#976](https://github.com/trailofbits/dylint/pull/976))

## 2.5.0

- Allow the `list` subcommand to accept `--manifest-path` options ([#951](https://github.com/trailofbits/dylint/pull/951))
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.

12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Dylint

**News:** Dylint has a new, experimental method for downloading packages. Please consider trying it by installing `cargo-dylint` with the following command:

```sh
cargo install cargo-dylint --no-default-features --features=metadata-cli
```

The new method requires fewer dependencies, which will make Dylint easier to maintain. Plus, it should install faster.

The original README follows.

---

A tool for running Rust lints from dynamic libraries

```sh
Expand Down
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.5.0"
version = "2.6.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand All @@ -13,10 +13,10 @@ anyhow = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.4", features = ["cargo", "derive", "wrap_help"] }
env_logger = "0.10"

dylint = { version = "=2.5.0", path = "../dylint", features = [
dylint = { version = "=2.6.0", path = "../dylint", features = [
"package_options",
], default-features = false }
dylint_internal = { version = "=2.5.0", path = "../internal" }
dylint_internal = { version = "=2.6.0", path = "../internal" }

[dev-dependencies]
assert_cmd = "2.0"
Expand All @@ -34,7 +34,7 @@ similar-asserts = "1.5"
tempfile = "3.9"
walkdir = "2.4"

dylint_internal = { version = "=2.5.0", path = "../internal", features = [
dylint_internal = { version = "=2.6.0", path = "../internal", features = [
"testing",
] }

Expand Down
12 changes: 12 additions & 0 deletions cargo-dylint/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Dylint

**News:** Dylint has a new, experimental method for downloading packages. Please consider trying it by installing `cargo-dylint` with the following command:

```sh
cargo install cargo-dylint --no-default-features --features=metadata-cli
```

The new method requires fewer dependencies, which will make Dylint easier to maintain. Plus, it should install faster.

The original README follows.

---

A tool for running Rust lints from dynamic libraries

```sh
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.5.0"
version = "2.6.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 = "=2.5.0", path = "../internal", features = ["rustup"] }
dylint_internal = { version = "=2.6.0", 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.5.0"
version = "2.6.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.10"
if_chain = "1.0"
toml_edit = "0.21"

dylint_internal = { version = "=2.5.0", path = "../internal", features = [
dylint_internal = { version = "=2.6.0", path = "../internal", features = [
"cargo",
] }

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

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.9"

dylint_internal = { version = "=2.5.0", path = "../internal", features = [
dylint_internal = { version = "=2.6.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 = "2.5.0"
version = "2.6.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2021"
Expand Down Expand Up @@ -41,22 +41,22 @@ curl-sys = { version = "0.4", features = [
"force-system-lib-on-osx",
], optional = true }

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

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

[dev-dependencies]
env_logger = "0.10"

dylint_internal = { version = "=2.5.0", path = "../internal", features = [
dylint_internal = { version = "=2.6.0", path = "../internal", features = [
"examples",
] }

Expand Down
12 changes: 12 additions & 0 deletions dylint/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Dylint

**News:** Dylint has a new, experimental method for downloading packages. Please consider trying it by installing `cargo-dylint` with the following command:

```sh
cargo install cargo-dylint --no-default-features --features=metadata-cli
```

The new method requires fewer dependencies, which will make Dylint easier to maintain. Plus, it should install faster.

The original README follows.

---

A tool for running Rust lints from dynamic libraries

```sh
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 = "examples"
version = "2.5.0"
version = "2.6.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.18"
toml_edit = "0.21"
walkdir = "2.4"

dylint_internal = { version = "=2.5.0", path = "../internal", features = [
dylint_internal = { version = "=2.6.0", path = "../internal", features = [
"clippy_utils",
"examples",
] }
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 = "2.5.0"
version = "2.6.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 = "2.5.0"
version = "2.6.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 5c02be9

Please sign in to comment.