Skip to content

Commit

Permalink
chore: bump versions to 0.1.0 for release (#684)
Browse files Browse the repository at this point in the history
For release on crates.io for v0.1
  • Loading branch information
MingweiSamuel authored May 23, 2023
1 parent 720744f commit 52ee8f8
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion hydro_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydro_cli"
publish = false # TODO(mingwei)
version = "0.0.0"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
10 changes: 5 additions & 5 deletions hydroflow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow"
publish = true
version = "0.0.2"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow/"
Expand All @@ -20,10 +20,10 @@ bincode = "1.3"
byteorder = "1.4.3"
bytes = "1.1.0"
futures = { version = "0.3", optional = true }
hydroflow_cli_integration = { optional = true, path = "../hydroflow_cli_integration", version = "^0.0.1" }
hydroflow_datalog = { optional = true, path = "../hydroflow_datalog", version = "^0.0.1" }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.0.1" }
hydroflow_macro = { optional = true, path = "../hydroflow_macro", version = "^0.0.1" }
hydroflow_cli_integration = { optional = true, path = "../hydroflow_cli_integration", version = "^0.1.0" }
hydroflow_datalog = { optional = true, path = "../hydroflow_datalog", version = "^0.1.0" }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.1.0" }
hydroflow_macro = { optional = true, path = "../hydroflow_macro", version = "^0.1.0" }
lattices = { path = "../lattices", version = "^0.1.0", features = [ "serde" ] }
pusherator = { path = "../pusherator", version = "^0.0.1" }
ref-cast = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion hydroflow_cli_integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_cli_integration"
publish = true
version = "0.0.1"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_cli_integration/"
Expand Down
4 changes: 2 additions & 2 deletions hydroflow_datalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_datalog"
publish = true
version = "0.0.1"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_datalog/"
Expand All @@ -19,4 +19,4 @@ proc-macro-crate = "1.1.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.
hydroflow_datalog_core = { path = "../hydroflow_datalog_core", features = [ "diagnostics" ], version = "^0.0.1" }
hydroflow_datalog_core = { path = "../hydroflow_datalog_core", features = [ "diagnostics" ], version = "^0.1.0" }
4 changes: 2 additions & 2 deletions hydroflow_datalog_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_datalog_core"
publish = true
version = "0.0.1"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_datalog_core/"
Expand All @@ -21,7 +21,7 @@ syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
proc-macro2 = "1.0.27"
proc-macro-crate = "1.1.0"
rust-sitter = "0.3.2"
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.0.1" }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.1.0" }

[build-dependencies]
rust-sitter-tool = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion hydroflow_internalmacro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_internalmacro"
publish = true
version = "0.0.0"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_internalmacro/"
Expand Down
4 changes: 2 additions & 2 deletions hydroflow_lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_lang"
publish = true
version = "0.0.1"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_lang/"
Expand All @@ -13,7 +13,7 @@ diagnostics = []

[dependencies]
auto_impl = "1.0.1"
hydroflow_internalmacro = { path = "../hydroflow_internalmacro", version = "0.0.0" }
hydroflow_internalmacro = { path = "../hydroflow_internalmacro", version = "0.1.0" }
prettyplease = { version = "0.2.0", features = [ "verbatim" ] }
proc-macro2 = { version = "1.0.0", features = ["span-locations"] }
quote = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions hydroflow_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hydroflow_macro"
publish = true
version = "0.0.1"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_macro/"
Expand All @@ -14,12 +14,12 @@ 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.
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.0.1", features = [ "diagnostics" ] }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.1.0", features = [ "diagnostics" ] }
proc-macro2 = "1.0.0"
proc-macro-crate = "1.1.0"
quote = "1.0.0"
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }

[build-dependencies]
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.0.1" }
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.1.0" }
quote = "1.0.0"

0 comments on commit 52ee8f8

Please sign in to comment.