Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jun 22, 2021
1 parent 059cd02 commit 5069831
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 20 deletions.
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 = "0.1.3"
version = "1.0.0"
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.41"
clap = "3.0.0-beta.2"
env_logger = "0.8.4"

dylint = { version = "=0.1.3", path = "../dylint", features = ["dylint_driver_local"] }
dylint_internal = { version = "=0.1.3", path = "../internal" }
dylint = { version = "=1.0.0", path = "../dylint", features = ["dylint_driver_local"] }
dylint_internal = { version = "=1.0.0", path = "../internal" }

[dev-dependencies]
assert_cmd = "1.0.5"
Expand Down
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Dylint driver library"
edition = "2018"
Expand All @@ -13,6 +13,6 @@ libloading = "0.7.0"
log = "0.4.14"
serde_json = "1.0.64"

dylint_internal = { version = "=0.1.3", path = "../internal" }
dylint_internal = { version = "=1.0.0", path = "../internal" }

[workspace]
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 = "0.1.3"
version = "1.0.0"
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,4 +12,4 @@ anyhow = "1.0.41"
env_logger = "0.8.4"
if_chain = "1.0.1"

dylint_internal = { version = "=0.1.3", path = "../internal" }
dylint_internal = { version = "=1.0.0", path = "../internal" }
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tool for running Rust lints from dynamic libraries"
edition = "2018"
Expand All @@ -23,7 +23,7 @@ serde_json = "1.0.64"
semver = "0.11.0"
tempfile = "3.2.0"

dylint_internal = { version = "=0.1.3", path = "../internal" }
dylint_internal = { version = "=1.0.0", path = "../internal" }

[dev-dependencies]
env_logger = "0.8.4"
Expand Down
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A tongue-in-cheek example of a Dylint library"
edition = "2018"
Expand Down
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "All of the Clippy lints as a Dylint library"
edition = "2018"
Expand Down
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for environment variables referred to with string literals"
edition = "2018"
Expand Down
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 = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for path separators in string literals"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion examples/question_mark_in_expression/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "question_mark_in_expression"
version = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for the `?` operator in expressions"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion examples/try_io_result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "try_io_result"
version = "0.1.0"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for the `?` operator applied to `std::io::Result`"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint_internal"
version = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Dylint internals"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion utils/linting/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint_linting"
version = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Utiltities for writing Dylint libraries"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions utils/testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dylint_testing"
version = "0.1.3"
version = "1.0.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Utiltities for testing Dylint libraries"
edition = "2018"
Expand All @@ -18,8 +18,8 @@ regex = "1.5.4"
serde_json = "1.0.64"
tempfile = "3.2.0"

dylint = { version = "=0.1.3", path = "../../dylint", default-features = false }
dylint_internal = { version = "=0.1.3", path = "../../internal" }
dylint = { version = "=1.0.0", path = "../../dylint", default-features = false }
dylint_internal = { version = "=1.0.0", path = "../../internal" }

[features]
default = []
Expand Down

0 comments on commit 5069831

Please sign in to comment.