From 5069831d33b48d9a30a6640c73b6981234e50490 Mon Sep 17 00:00:00 2001 From: "Samuel E. Moelius III" Date: Mon, 21 Jun 2021 20:53:41 -0400 Subject: [PATCH] Bump version --- cargo-dylint/Cargo.toml | 6 +++--- driver/Cargo.toml | 4 ++-- dylint-link/Cargo.toml | 4 ++-- dylint/Cargo.toml | 4 ++-- examples/allow_clippy/Cargo.toml | 2 +- examples/clippy/Cargo.toml | 2 +- examples/env_literal/Cargo.toml | 2 +- examples/path_separator_in_string_literal/Cargo.toml | 2 +- examples/question_mark_in_expression/Cargo.toml | 2 +- examples/try_io_result/Cargo.toml | 2 +- internal/Cargo.toml | 2 +- utils/linting/Cargo.toml | 2 +- utils/testing/Cargo.toml | 6 +++--- 13 files changed, 20 insertions(+), 20 deletions(-) diff --git a/cargo-dylint/Cargo.toml b/cargo-dylint/Cargo.toml index 64ee88799..0a83e2a0b 100644 --- a/cargo-dylint/Cargo.toml +++ b/cargo-dylint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-dylint" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A tool for running Rust lints from dynamic libraries" edition = "2018" @@ -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" diff --git a/driver/Cargo.toml b/driver/Cargo.toml index 78f3cc04f..e2cc31501 100644 --- a/driver/Cargo.toml +++ b/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_driver" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "Dylint driver library" edition = "2018" @@ -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] diff --git a/dylint-link/Cargo.toml b/dylint-link/Cargo.toml index c4f08a044..e855e97bc 100644 --- a/dylint-link/Cargo.toml +++ b/dylint-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint-link" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A wrapper around Rust's default linker to help create Dyling libraries" edition = "2018" @@ -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" } diff --git a/dylint/Cargo.toml b/dylint/Cargo.toml index 8cfc3b186..8eb7bd7a6 100644 --- a/dylint/Cargo.toml +++ b/dylint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A tool for running Rust lints from dynamic libraries" edition = "2018" @@ -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" diff --git a/examples/allow_clippy/Cargo.toml b/examples/allow_clippy/Cargo.toml index 5506ab0a8..bad1e30a5 100644 --- a/examples/allow_clippy/Cargo.toml +++ b/examples/allow_clippy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "allow_clippy" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A tongue-in-cheek example of a Dylint library" edition = "2018" diff --git a/examples/clippy/Cargo.toml b/examples/clippy/Cargo.toml index 56b0dd0ba..e95c3c528 100644 --- a/examples/clippy/Cargo.toml +++ b/examples/clippy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "All of the Clippy lints as a Dylint library" edition = "2018" diff --git a/examples/env_literal/Cargo.toml b/examples/env_literal/Cargo.toml index 6d9470c53..294bf59df 100644 --- a/examples/env_literal/Cargo.toml +++ b/examples/env_literal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_literal" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for environment variables referred to with string literals" edition = "2018" diff --git a/examples/path_separator_in_string_literal/Cargo.toml b/examples/path_separator_in_string_literal/Cargo.toml index 3c2c81202..a7feb66d9 100644 --- a/examples/path_separator_in_string_literal/Cargo.toml +++ b/examples/path_separator_in_string_literal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "path_separator_in_string_literal" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for path separators in string literals" edition = "2018" diff --git a/examples/question_mark_in_expression/Cargo.toml b/examples/question_mark_in_expression/Cargo.toml index d8829f1e4..fbfd6b290 100644 --- a/examples/question_mark_in_expression/Cargo.toml +++ b/examples/question_mark_in_expression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "question_mark_in_expression" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for the `?` operator in expressions" edition = "2018" diff --git a/examples/try_io_result/Cargo.toml b/examples/try_io_result/Cargo.toml index 88c594af6..561660497 100644 --- a/examples/try_io_result/Cargo.toml +++ b/examples/try_io_result/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "try_io_result" -version = "0.1.0" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for the `?` operator applied to `std::io::Result`" edition = "2018" diff --git a/internal/Cargo.toml b/internal/Cargo.toml index d082932c2..4cfead67f 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_internal" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "Dylint internals" edition = "2018" diff --git a/utils/linting/Cargo.toml b/utils/linting/Cargo.toml index c092262ca..e8f9fb629 100644 --- a/utils/linting/Cargo.toml +++ b/utils/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_linting" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "Utiltities for writing Dylint libraries" edition = "2018" diff --git a/utils/testing/Cargo.toml b/utils/testing/Cargo.toml index 6ed19f17e..e8b2c7bed 100644 --- a/utils/testing/Cargo.toml +++ b/utils/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_testing" -version = "0.1.3" +version = "1.0.0" authors = ["Samuel E. Moelius III "] description = "Utiltities for testing Dylint libraries" edition = "2018" @@ -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 = []