Skip to content

Commit 12388fa

Browse files
committed
chore: bump version to 0.10.0
1 parent 77735d4 commit 12388fa

7 files changed

Lines changed: 18 additions & 18 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
exclude = ["fuzz"]
1212

1313
[workspace.package]
14-
version = "0.9.0"
14+
version = "0.10.0"
1515
edition = "2024"
1616
rust-version = "1.88.0"
1717
license = "MIT"

crates/rsigma-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ cef = ["rsigma-runtime/cef"]
1919
evtx = ["rsigma-runtime/evtx"]
2020

2121
[dependencies]
22-
rsigma-parser = { path = "../rsigma-parser", version = "0.9.0" }
23-
rsigma-eval = { path = "../rsigma-eval", version = "0.9.0", features = ["parallel"] }
24-
rsigma-convert = { path = "../rsigma-convert", version = "0.9.0" }
25-
rsigma-runtime = { path = "../rsigma-runtime", version = "0.9.0", optional = true }
22+
rsigma-parser = { path = "../rsigma-parser", version = "0.10.0" }
23+
rsigma-eval = { path = "../rsigma-eval", version = "0.10.0", features = ["parallel"] }
24+
rsigma-convert = { path = "../rsigma-convert", version = "0.10.0" }
25+
rsigma-runtime = { path = "../rsigma-runtime", version = "0.10.0", optional = true }
2626
clap = { version = "4", features = ["derive", "env"] }
2727
serde = { version = "1", features = ["derive"] }
2828
serde_json = "1"

crates/rsigma-convert/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ repository.workspace = true
1010
homepage.workspace = true
1111

1212
[dependencies]
13-
rsigma-parser = { path = "../rsigma-parser", version = "0.9.0" }
14-
rsigma-eval = { path = "../rsigma-eval", version = "0.9.0" }
13+
rsigma-parser = { path = "../rsigma-parser", version = "0.10.0" }
14+
rsigma-eval = { path = "../rsigma-eval", version = "0.10.0" }
1515
thiserror = "2"
1616
serde_json = "1"
1717
serde_yaml = { package = "yaml_serde", version = "0.10" }

crates/rsigma-eval/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ homepage.workspace = true
1313
parallel = ["rayon"]
1414

1515
[dependencies]
16-
rsigma-parser = { path = "../rsigma-parser", version = "0.9.0" }
16+
rsigma-parser = { path = "../rsigma-parser", version = "0.10.0" }
1717
serde = { version = "1", features = ["derive", "rc"] }
1818
serde_json = "1"
1919
serde_yaml = { package = "yaml_serde", version = "0.10" }

crates/rsigma-lsp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ name = "rsigma-lsp"
1414
path = "src/main.rs"
1515

1616
[dependencies]
17-
rsigma-parser = { path = "../rsigma-parser", version = "0.9.0" }
18-
rsigma-eval = { path = "../rsigma-eval", version = "0.9.0" }
17+
rsigma-parser = { path = "../rsigma-parser", version = "0.10.0" }
18+
rsigma-eval = { path = "../rsigma-eval", version = "0.10.0" }
1919
tower-lsp-server = "0.23"
2020
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "time", "sync"] }
2121
log = "0.4"

crates/rsigma-runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cef = []
1818
evtx = ["dep:evtx"]
1919

2020
[dependencies]
21-
rsigma-parser = { path = "../rsigma-parser", version = "0.9.0" }
22-
rsigma-eval = { path = "../rsigma-eval", version = "0.9.0", features = ["parallel"] }
21+
rsigma-parser = { path = "../rsigma-parser", version = "0.10.0" }
22+
rsigma-eval = { path = "../rsigma-eval", version = "0.10.0", features = ["parallel"] }
2323
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "io-util", "io-std", "process", "fs"] }
2424
serde_json = "1"
2525
serde_yaml = { package = "yaml_serde", version = "0.10" }

0 commit comments

Comments
 (0)