Skip to content

Commit

Permalink
chore: bump versions manually for renamed crates, per RELEASING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Dec 23, 2024
1 parent e1a08e5 commit e306ecd
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 32 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dfir_datalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dfir_datalog"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_datalog/"
Expand All @@ -22,4 +22,4 @@ proc-macro-crate = "1.0.0"
# Note: If we ever compile this proc macro crate to WASM (e.g., if we are
# building on a WASM host), we may need to turn diagnostics off for WASM if
# proc_macro2 does not support WASM at that time.
dfir_datalog_core = { path = "../dfir_datalog_core", version = "^0.10.0" }
dfir_datalog_core = { path = "../dfir_datalog_core", version = "^0.11.0" }
4 changes: 2 additions & 2 deletions dfir_datalog_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dfir_datalog_core"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_datalog_core/"
Expand All @@ -19,7 +19,7 @@ slotmap = "1.0.0"
syn = { version = "2.0.46", features = [ "parsing", "extra-traits" ] }
proc-macro2 = "1.0.74"
rust-sitter = "0.4.3"
dfir_lang = { path = "../dfir_lang", version = "^0.10.0" }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0" }

[build-dependencies]
rust-sitter-tool = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion dfir_lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dfir_lang"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_lang/"
Expand Down
6 changes: 3 additions & 3 deletions dfir_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dfir_macro"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_macro/"
Expand All @@ -17,14 +17,14 @@ proc-macro = true
# Note: If we ever compile this proc macro crate to WASM (e.g., if we are
# building on a WASM host), we may need to turn diagnostics off for WASM if
# proc_macro2 still does not support WASM.
dfir_lang = { path = "../dfir_lang", version = "^0.10.0" }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0" }
proc-macro2 = "1.0.74"
proc-macro-crate = "1.0.0"
quote = "1.0.35"
syn = { version = "2.0.46", features = [ "parsing", "extra-traits" ] }

[build-dependencies]
dfir_lang = { path = "../dfir_lang", version = "^0.10.0" }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0" }
itertools = "0.10.0"
quote = "1.0.35"
rustc_version = "0.4.0"
10 changes: 5 additions & 5 deletions dfir_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dfir_rs"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_rs/"
Expand Down Expand Up @@ -34,9 +34,9 @@ byteorder = "1.3.2"
bytes = "1.1.0"
futures = "0.3.0"
hydroflow_deploy_integration = { optional = true, path = "../hydro_deploy/hydroflow_deploy_integration", version = "^0.10.0" }
dfir_datalog = { optional = true, path = "../dfir_datalog", version = "^0.10.0" }
dfir_lang = { path = "../dfir_lang", version = "^0.10.0", optional = true }
dfir_macro = { optional = true, path = "../dfir_macro", version = "^0.10.0" }
dfir_datalog = { optional = true, path = "../dfir_datalog", version = "^0.11.0" }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0", optional = true }
dfir_macro = { optional = true, path = "../dfir_macro", version = "^0.11.0" }
itertools = "0.10.0"
lattices = { path = "../lattices", version = "^0.5.8", features = [ "serde" ] }
pusherator = { path = "../pusherator", version = "^0.0.9" }
Expand Down Expand Up @@ -72,7 +72,7 @@ tokio-util = { version = "0.7.5", features = [ "codec" ] }
getrandom = { version = "0.2.6", features = [ "js" ] }

[dev-dependencies]
dfir_lang = { path = "../dfir_lang", version = "^0.10.0", features = [ "clap-derive" ] }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0", features = [ "clap-derive" ] }

chrono = { version = "0.4.20", features = [ "serde", "clock" ], default-features = false }
clap = { version = "4.5.4", features = [ "derive" ] }
Expand Down
6 changes: 3 additions & 3 deletions hydro_lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydro_lang"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_lang/"
Expand All @@ -22,8 +22,8 @@ build = [ "dep:dfir_lang" ]
[dependencies]
bincode = "1.3.1"
hydro_deploy = { path = "../hydro_deploy/core", version = "^0.10.0", optional = true }
dfir_rs = { path = "../dfir_rs", version = "^0.10.0", default-features = false, features = ["deploy_integration"] }
dfir_lang = { path = "../dfir_lang", version = "^0.10.0", optional = true }
dfir_rs = { path = "../dfir_rs", version = "^0.11.0", default-features = false, features = ["deploy_integration"] }
dfir_lang = { path = "../dfir_lang", version = "^0.11.0", optional = true }
match_box = "0.0.2"
nameof = { version = "1.0.0", optional = true }
prettyplease = { version = "0.2.0", features = [ "verbatim" ], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions hydro_std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydro_std"
publish = true
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_plus/"
Expand All @@ -14,14 +14,14 @@ workspace = true
path = "src/lib.rs"

[dependencies]
hydro_lang = { path = "../hydro_lang", version = "^0.10.0", default-features = false }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0", default-features = false }
stageleft = { path = "../stageleft", version = "^0.5.0" }

[build-dependencies]
stageleft_tool = { path = "../stageleft_tool", version = "^0.4.0" }

[dev-dependencies]
hydro_lang = { path = "../hydro_lang", version = "^0.10.0" }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0" }
insta = "1.39"
hydro_deploy = { path = "../hydro_deploy/core", version = "^0.10.0" }
async-ssh2-lite = { version = "0.5.0", features = ["vendored-openssl"] }
Expand Down
6 changes: 3 additions & 3 deletions hydro_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ default = ["stageleft_devel"]
stageleft_devel = []

[dependencies]
hydro_lang = { path = "../hydro_lang", version = "^0.10.0" }
hydro_std = { path = "../hydro_std", version = "^0.10.0" }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0" }
hydro_std = { path = "../hydro_std", version = "^0.11.0" }
tokio = { version = "1.29.0", features = [ "full" ] }
stageleft = { path = "../stageleft", version = "^0.5.0" }
rand = "0.8.0"
Expand All @@ -25,6 +25,6 @@ stageleft_tool = { path = "../stageleft_tool", version = "^0.4.0" }
[dev-dependencies]
insta = "1.39"
hydro_deploy = { path = "../hydro_deploy/core", version = "^0.10.0" }
hydro_lang = { path = "../hydro_lang", version = "^0.10.0", features = [ "deploy" ] }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0", features = [ "deploy" ] }
futures = "0.3.0"
async-ssh2-lite = { version = "0.5.0", features = ["vendored-openssl"] }
4 changes: 2 additions & 2 deletions hydro_test_local/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ workspace = true
stageleft_devel = []

[dependencies]
dfir_rs = { path = "../dfir_rs", version = "^0.10.0", default-features = false } # , features = ["debugging"] }
hydro_lang = { path = "../hydro_lang", version = "^0.10.0", features = ["build"] }
dfir_rs = { path = "../dfir_rs", version = "^0.11.0", default-features = false } # , features = ["debugging"] }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0", features = ["build"] }
stageleft = { path = "../stageleft", version = "^0.5.0" }
rand = "0.8.0"

Expand Down
2 changes: 1 addition & 1 deletion hydro_test_local_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ proc-macro = true
path = "../hydro_test_local/src/lib.rs"

[dependencies]
hydro_lang = { path = "../hydro_lang", version = "^0.10.0", features = ["build"] }
hydro_lang = { path = "../hydro_lang", version = "^0.11.0", features = ["build"] }
stageleft = { path = "../stageleft", version = "^0.5.0" }
rand = "0.8.0"

Expand Down

0 comments on commit e306ecd

Please sign in to comment.