Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
lenscas committed Dec 15, 2023
1 parent d104a52 commit 60aa080
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"tempfile",
"userdata"
],
"rust-analyzer.cargo.features": ["rlua","rlua_builtin-lua54"]
"rust-analyzer.cargo.features": ["mlua","mlua_vendored","mlua_luau","mlua_async","mlua_send"]
}
4 changes: 2 additions & 2 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "tealr"
readme = "README.md"
repository = "https://github.com/lenscas/tealr/"
version = "0.9.0-alpha4"
version = "0.9.0"

[workspace]
members = ["tealr_derive"]
Expand Down Expand Up @@ -52,7 +52,7 @@ mlua = { version = "0.9.2", optional = true, default_features = false }
rlua = { version = "0.19.7", optional = true, default_features = false }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.91"
tealr_derive = { version = "0.9.0-alpha4", optional = true, path = "./tealr_derive" }
tealr_derive = { version = "0.9.0", optional = true, path = "./tealr_derive" }

# Rlua tests
[[test]]
Expand Down
10 changes: 5 additions & 5 deletions tealr_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["derive", "macro", "teal", "lua", "tealr"]
license = "MIT OR Apache-2.0"
name = "tealr_derive"
repository = "https://github.com/lenscas/tealr/"
version = "0.9.0-alpha4"
version = "0.9.0"

[features]
compile = ["tempfile"]
Expand All @@ -22,8 +22,8 @@ debug_macros = []
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = {version = "1", optional = true}
tempfile = {version = "3.3.0", optional = true}
ureq = {version = "2.4.0", optional = true}
syn = { version = "1", optional = true }
tempfile = { version = "3.3.0", optional = true }
ureq = { version = "2.4.0", optional = true }
venial = "0.4"
zip = {version = "0.6.2", optional = true}
zip = { version = "0.6.2", optional = true }

0 comments on commit 60aa080

Please sign in to comment.