Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jan 30, 2022
1 parent 4c710d4 commit 1be039f
Show file tree
Hide file tree
Showing 24 changed files with 69 additions and 64 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.12

- If an `--upgrade` would result in a downgrade, and `--bisect` is passed, the downgrade is skipped and the bisect proceeds instead of producing an error. ([#183](https://github.com/trailofbits/dylint/pull/183))
- Be more explicit about what cargo is doing ([#185](https://github.com/trailofbits/dylint/pull/185))

## 1.0.11

- Add experimental `--bisect` option ([#170](https://github.com/trailofbits/dylint/pull/170))
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 = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2018"
Expand All @@ -12,8 +12,8 @@ anyhow = "1.0.53"
clap = { version = "3.0.10", features = ["cargo", "derive"] }
env_logger = "0.9.0"

dylint = { version = "=1.0.11", path = "../dylint", features = ["dylint_driver_local", "package_options"] }
dylint_internal = { version = "=1.0.11", path = "../internal", features = ["git2"] }
dylint = { version = "=1.0.12", path = "../dylint", features = ["dylint_driver_local", "package_options"] }
dylint_internal = { version = "=1.0.12", 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 = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "Dylint driver library"
edition = "2018"
Expand All @@ -13,7 +13,7 @@ libloading = "0.7.3"
log = "0.4.14"
serde_json = "1.0.78"

dylint_internal = { version = "=1.0.11", path = "../internal" }
dylint_internal = { version = "=1.0.12", 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 = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A wrapper around Rust's default linker to help create Dyling libraries"
edition = "2018"
Expand All @@ -12,7 +12,7 @@ anyhow = "1.0.53"
env_logger = "0.9.0"
if_chain = "1.0.2"

dylint_internal = { version = "=1.0.11", path = "../internal" }
dylint_internal = { version = "=1.0.12", path = "../internal" }

[target.'cfg(target_os = "windows")'.dependencies]
cc = "1.0.72"
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 = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2018"
Expand Down Expand Up @@ -28,7 +28,7 @@ serde_json = "1.0.78"
tempfile = "3.3.0"
walkdir = "2.3.2"

dylint_internal = { version = "=1.0.11", path = "../internal" }
dylint_internal = { version = "=1.0.12", path = "../internal" }

[dev-dependencies]
env_logger = "0.9.0"
Expand Down
10 changes: 5 additions & 5 deletions examples/allow_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/allow_clippy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "allow_clippy"
version = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A tongue-in-cheek example of a Dylint library"
edition = "2018"
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 = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "All of the Clippy lints as a Dylint library"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions examples/env_literal/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_literal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "env_literal"
version = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A lint to check for environment variables referred to with string literals"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions examples/nonreentrant_function_in_test/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/nonreentrant_function_in_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nonreentrant_function_in_test"
version = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A lint to check for nonreentrant functions in tests"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions examples/path_separator_in_string_literal/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/path_separator_in_string_literal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "path_separator_in_string_literal"
version = "1.0.11"
version = "1.0.12"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
description = "A lint to check for path separators in string literals"
edition = "2018"
Expand Down
Loading

0 comments on commit 1be039f

Please sign in to comment.