From 0a935458eeddb439b53d09947de57634c1943271 Mon Sep 17 00:00:00 2001 From: Dan Hable Date: Wed, 14 Jun 2023 14:57:18 -0500 Subject: [PATCH] chore: bring cargo version inline with repo tags There were a number of manual tag/releases created in our fork repo to release changes that could be picked up in the vector fork. With Jenkins, we now need to reset the version in the Cargo.toml files to match the tag set so things don't get weird. Ref: LOG-16869 --- Cargo.toml | 8 ++++---- lib/cli/Cargo.toml | 8 ++++---- lib/compiler/Cargo.toml | 6 +++--- lib/core/Cargo.toml | 6 +++--- lib/datadog/filter/Cargo.toml | 4 ++-- lib/datadog/grok/Cargo.toml | 8 ++++---- lib/datadog/search-syntax/Cargo.toml | 2 +- lib/diagnostic/Cargo.toml | 2 +- lib/lookup/Cargo.toml | 2 +- lib/parser/Cargo.toml | 4 ++-- lib/proptests/Cargo.toml | 4 ++-- lib/stdlib/Cargo.toml | 16 ++++++++-------- lib/tests/Cargo.toml | 8 ++++---- lib/value/Cargo.toml | 4 ++-- lib/web-playground/Cargo.toml | 6 +++--- 15 files changed, 44 insertions(+), 44 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index edd135f0fe..27f46e0d6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false @@ -52,11 +52,11 @@ bytes = "1.4.0" compiler = { package = "vrl-compiler", path = "lib/compiler", default-features = false } diagnostic = { package = "vrl-diagnostic", path = "lib/diagnostic" } indoc = "2" -lookup = { path = "lib/lookup" } +lookup = { path = "lib/lookup" , version = "0.2.0.3" } ordered-float = "3" parser = { package = "vrl-parser", path = "lib/parser" } -value = { path = "lib/value", default-features = false } -vrl-core = { path = "lib/core" } +value = { path = "lib/value", default-features = false , version = "0.2.0.3" } +vrl-core = { path = "lib/core" , version = "0.2.0.3" } [dev-dependencies] criterion = "0.4" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 08a23e3764..a2bc6689da 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl-cli" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false @@ -20,11 +20,11 @@ regex = { version = "1", default-features = false, optional = true, features = [ rustyline = { version = "11", default-features = false, optional = true } serde_json = "1" thiserror = "1" -vrl = { path = "../..", default-features = false } +vrl = { path = "../..", default-features = false , version = "0.2.0.3" } core = { package = "vrl-core", path = "../core", default-features = false } -value = { path = "../value", default-features = false, features = [] } +value = { path = "../value", default-features = false, features = [] , version = "0.2.0.3" } webbrowser = { version = "0.8", default-features = false, optional = true } -lookup = { package = "lookup", path = "../lookup" } +lookup = { package = "lookup", path = "../lookup" , version = "0.2.0.3" } [dependencies.stdlib] package = "vrl-stdlib" diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index 6b3886d3c4..7bb616ac21 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl-compiler" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false @@ -31,8 +31,8 @@ test = [] core = { package = "vrl-core", path = "../core", default-features = false } diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } parser = { package = "vrl-parser", path = "../parser" } -lookup = { path = "../lookup" } -value = { path = "../value" } +lookup = { path = "../lookup" , version = "0.2.0.3" } +value = { path = "../value" , version = "0.2.0.3" } getrandom = { version = "0.2", features = ["js"] } bytes = { version = "1.4.0", default-features = false } diff --git a/lib/core/Cargo.toml b/lib/core/Cargo.toml index e4f06e3511..f2d9b52200 100644 --- a/lib/core/Cargo.toml +++ b/lib/core/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "vrl-core" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false [dependencies] -lookup = { path = "../lookup" } -value = { path = "../value", features = ["json"] } +lookup = { path = "../lookup" , version = "0.2.0.3" } +value = { path = "../value", features = ["json"] , version = "0.2.0.3" } derivative = "2.1.3" diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } chrono-tz = { version = "0.8.1", default-features = false } diff --git a/lib/datadog/filter/Cargo.toml b/lib/datadog/filter/Cargo.toml index b5edee1921..56d0ab4ba4 100644 --- a/lib/datadog/filter/Cargo.toml +++ b/lib/datadog/filter/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "datadog-filter" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false license = "MPL-2.0" [dependencies] -datadog-search-syntax = { path = "../search-syntax" } +datadog-search-syntax = { path = "../search-syntax" , version = "0.2.0.3" } regex = "1" dyn-clone = { version = "1.0.11", default-features = false } diff --git a/lib/datadog/grok/Cargo.toml b/lib/datadog/grok/Cargo.toml index 5c251efb5f..f2aadf7a9d 100644 --- a/lib/datadog/grok/Cargo.toml +++ b/lib/datadog/grok/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "datadog-grok" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" build = "build.rs" # LALRPOP preprocessing @@ -22,9 +22,9 @@ thiserror = { version = "1", default-features = false } tracing = { version = "0.1.34", default-features = false } # Internal -lookup = { path = "../../lookup" } -value = {path = "../../value", features = ["json", "test"]} -vrl-compiler = { path = "../../compiler" } +lookup = { path = "../../lookup" , version = "0.2.0.3" } +value = {path = "../../value", features = ["json", "test"], version = "0.2.0.3" } +vrl-compiler = { path = "../../compiler" , version = "0.2.0.3" } [dev-dependencies] vrl-compiler = { path = "../../compiler" } diff --git a/lib/datadog/search-syntax/Cargo.toml b/lib/datadog/search-syntax/Cargo.toml index 3946037754..363777b425 100644 --- a/lib/datadog/search-syntax/Cargo.toml +++ b/lib/datadog/search-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "datadog-search-syntax" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false diff --git a/lib/diagnostic/Cargo.toml b/lib/diagnostic/Cargo.toml index 230eff0d07..417204763c 100644 --- a/lib/diagnostic/Cargo.toml +++ b/lib/diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl-diagnostic" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false diff --git a/lib/lookup/Cargo.toml b/lib/lookup/Cargo.toml index 9d1800be16..710fe1e711 100644 --- a/lib/lookup/Cargo.toml +++ b/lib/lookup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lookup" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors ", "Mezmo "] edition = "2021" publish = false diff --git a/lib/parser/Cargo.toml b/lib/parser/Cargo.toml index 045c8fef2f..adfd6cada2 100644 --- a/lib/parser/Cargo.toml +++ b/lib/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl-parser" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false @@ -8,7 +8,7 @@ build = "build.rs" # LALRPOP preprocessing [dependencies] diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } -lookup = { path = "../lookup" } +lookup = { path = "../lookup" , version = "0.2.0.3" } arbitrary = { version = "1", optional = true, features = ["derive"] } lalrpop-util = "0.19" diff --git a/lib/proptests/Cargo.toml b/lib/proptests/Cargo.toml index c62d52dc48..34823d31cc 100644 --- a/lib/proptests/Cargo.toml +++ b/lib/proptests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proptests" -version = "0.1.0" +version = "0.2.0.3" authors = ["Stephen Wakely "] edition = "2021" @@ -12,4 +12,4 @@ proptest = "1.1" ordered-float = "3" parser = { package = "vrl-parser", path = "../parser/" } diagnostic = { package = "vrl-diagnostic", path = "../diagnostic/" } -lookup = { path = "../lookup/" } +lookup = { path = "../lookup/" , version = "0.2.0.3" } diff --git a/lib/stdlib/Cargo.toml b/lib/stdlib/Cargo.toml index b68c4bfdaf..10fe314774 100644 --- a/lib/stdlib/Cargo.toml +++ b/lib/stdlib/Cargo.toml @@ -1,21 +1,21 @@ [package] name = "vrl-stdlib" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false license = "MPL-2.0" [dependencies] -vrl = { path = "../.." } +vrl = { path = "../.." , version = "0.2.0.3" } compiler = { package = "vrl-compiler", path = "../compiler", default-features = false } -value = { path = "../value", default-features = false } +value = { path = "../value", default-features = false , version = "0.2.0.3" } -datadog-filter = { path = "../datadog/filter", optional = true } -datadog-search-syntax = { path = "../datadog/search-syntax", optional = true } +datadog-filter = { path = "../datadog/filter", optional = true , version = "0.2.0.3" } +datadog-search-syntax = { path = "../datadog/search-syntax", optional = true , version = "0.2.0.3" } lookup_lib = {package = "lookup", path = "../lookup", optional = true } -vrl-core = { path = "../core" } -vrl-diagnostic = { path = "../diagnostic" } +vrl-core = { path = "../core" , version = "0.2.0.3" } +vrl-diagnostic = { path = "../diagnostic" , version = "0.2.0.3" } base16 = { version = "0.2", optional = true } base64 = { version = "0.21", optional = true } @@ -68,7 +68,7 @@ ofb = { version = "0.6.1", optional = true } dns-lookup = { version = "1.0.8", optional = true } hostname = { version = "0.3", optional = true } grok = { version = "2", optional = true } -datadog-grok = { path = "../datadog/grok", optional = true } +datadog-grok = { path = "../datadog/grok", optional = true , version = "0.2.0.3" } [dev-dependencies] anyhow = "1" diff --git a/lib/tests/Cargo.toml b/lib/tests/Cargo.toml index 77fc946c8f..44d68a5343 100644 --- a/lib/tests/Cargo.toml +++ b/lib/tests/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "vrl-tests" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" publish = false [dependencies] -lookup = { path = "../lookup" } +lookup = { path = "../lookup" , version = "0.2.0.3" } stdlib = { package = "vrl-stdlib", path = "../stdlib" } -vrl = { path = "../.." } -value = { path = "../value" } +vrl = { path = "../.." , version = "0.2.0.3" } +value = { path = "../value" , version = "0.2.0.3" } ansi_term = "0.12" chrono = "0.4" diff --git a/lib/value/Cargo.toml b/lib/value/Cargo.toml index 35666e38e2..314b98a5f0 100644 --- a/lib/value/Cargo.toml +++ b/lib/value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value" -version = "0.1.0" +version = "0.2.0.3" authors = ["Vector Contributors "] edition = "2021" license = "MPL-2.0" @@ -10,7 +10,7 @@ publish = false [dependencies] bytes = { version = "1.4.0", default-features = false, features = ["serde"] } chrono = { version = "0.4.19", default-features = false, features = ["serde", "std"] } -lookup = { path = "../lookup", default-features = false } +lookup = { path = "../lookup", default-features = false , version = "0.2.0.3" } ordered-float = { version = "3.6.0", default-features = false } regex = { version = "1.7.2", default-features = false, features = ["std", "perf"]} snafu = { version = "0.7.4", default-features = false } diff --git a/lib/web-playground/Cargo.toml b/lib/web-playground/Cargo.toml index e721818b22..acf0c8d56c 100644 --- a/lib/web-playground/Cargo.toml +++ b/lib/web-playground/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrl-web-playground" -version = "0.1.0" +version = "0.2.0.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,8 +10,8 @@ crate-type = ["cdylib"] [dependencies] wasm-bindgen = "0.2" -vrl = { path = "../..", default-features = false } -value = { path = "../value", default-features = false } +vrl = { path = "../..", default-features = false , version = "0.2.0.3" } +value = { path = "../value", default-features = false , version = "0.2.0.3" } serde = { version = "1.0", features = ["derive"] } serde-wasm-bindgen = "0.5" gloo-utils = { version = "0.1", features = ["serde"] }