Skip to content

Commit

Permalink
chore: bring cargo version inline with repo tags
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dhable committed Jun 14, 2023
1 parent 5509943 commit 0a93545
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 44 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-cli"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-compiler"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down Expand Up @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions lib/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "vrl-core"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
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 }
Expand Down
4 changes: 2 additions & 2 deletions lib/datadog/filter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "datadog-filter"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
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 }
8 changes: 4 additions & 4 deletions lib/datadog/grok/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datadog-grok"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
build = "build.rs" # LALRPOP preprocessing
Expand All @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog/search-syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datadog-search-syntax"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion lib/diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-diagnostic"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion lib/lookup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lookup"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>", "Mezmo <engineering@mezmo.com>"]
edition = "2021"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions lib/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "vrl-parser"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
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"
Expand Down
4 changes: 2 additions & 2 deletions lib/proptests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proptests"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Stephen Wakely <fungus.humungus@gmail.com>"]
edition = "2021"

Expand All @@ -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" }
16 changes: 8 additions & 8 deletions lib/stdlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "vrl-stdlib"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
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 }
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions lib/tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "vrl-tests"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@datadoghq.com>"]
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"
Expand Down
4 changes: 2 additions & 2 deletions lib/value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "value"
version = "0.1.0"
version = "0.2.0.3"
authors = ["Vector Contributors <vector@timber.io>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions lib/web-playground/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"] }
Expand Down

0 comments on commit 0a93545

Please sign in to comment.