Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ahdinosaur committed Oct 1, 2023
1 parent 6ca4171 commit eb0851c
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.2.0"
edition = "2021"

rust-version = "1.70.0"
Expand Down
2 changes: 1 addition & 1 deletion ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rust_decimal = "1.31.0"
indexmap = "2.0.0"

Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu = { path = "../rimu", version = "0.1.0" }
rimu = { path = "../rimu", version = "0.2.0" }
ariadne = "0.3.0"
clap = { version = "4.4.2", features = ["derive"] }
clio = { version = "0.3.4", features = ["clap-parse"] }
Expand Down
6 changes: 3 additions & 3 deletions eval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-ast = { path = "../ast", version = "0.1.0" }
rimu-value = { path = "../value", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rimu-ast = { path = "../ast", version = "0.2.0" }
rimu-value = { path = "../value", version = "0.2.0" }
rust_decimal = "1.31.0"
rust_decimal_macros = "1.31.0"
thiserror = "1.0.44"
Expand Down
4 changes: 2 additions & 2 deletions parse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-ast = { path = "../ast", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rimu-ast = { path = "../ast", version = "0.2.0" }
rust_decimal = "1.31.0"
chumsky = "0.9.2"
line-span = "0.1.5"
Expand Down
4 changes: 2 additions & 2 deletions play/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rimu-playground-wasm"
version = "0.1.0"
version = "0.2.0"
publish = false
edition.workspace = true

Expand All @@ -13,7 +13,7 @@ default = ["console_error_panic_hook"]
[dependencies]
console_error_panic_hook = { version = "0.1.7", optional = true }
js-sys = "0.3.64"
rimu = { path = "../../rimu", version = "0.1.0" }
rimu = { path = "../../rimu", version = "0.2.0" }
serde = "1.0.181"
serde_json = "1.0.105"
serde-wasm-bindgen = "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion repl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu = { path = "../rimu", version = "0.1.0" }
rimu = { path = "../rimu", version = "0.2.0" }
rustyline = "12.0.0"
12 changes: 6 additions & 6 deletions rimu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-ast = { path = "../ast", version = "0.1.0" }
rimu-parse = { path = "../parse", version = "0.1.0" }
rimu-value = { path = "../value", version = "0.1.0" }
rimu-stdlib = { path = "../stdlib", version = "0.1.0" }
rimu-eval = { path = "../eval", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rimu-ast = { path = "../ast", version = "0.2.0" }
rimu-parse = { path = "../parse", version = "0.2.0" }
rimu-value = { path = "../value", version = "0.2.0" }
rimu-stdlib = { path = "../stdlib", version = "0.2.0" }
rimu-eval = { path = "../eval", version = "0.2.0" }

[dev-dependencies]
pretty_assertions = "1.4.0"
Expand Down
6 changes: 3 additions & 3 deletions stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-value = { path = "../value", version = "0.1.0" }
rimu-eval = { path = "../eval", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rimu-value = { path = "../value", version = "0.2.0" }
rimu-eval = { path = "../eval", version = "0.2.0" }
rust_decimal = "1.31.0"
rust_decimal_macros = "1.31.0"

Expand Down
4 changes: 2 additions & 2 deletions value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rimu-meta = { path = "../meta", version = "0.1.0" }
rimu-ast = { path = "../ast", version = "0.1.0" }
rimu-meta = { path = "../meta", version = "0.2.0" }
rimu-ast = { path = "../ast", version = "0.2.0" }
ryu = "1.0.15"
serde = "1.0.181"
thiserror = "1.0.44"
Expand Down

1 comment on commit eb0851c

@vercel
Copy link

@vercel vercel bot commented on eb0851c Oct 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.