Skip to content

Commit

Permalink
Release: ezno-parser-visitable-derive to 0.0.6, ezno-parser to 0.1.4,…
Browse files Browse the repository at this point in the history
… ezno-ast-generator to 0.0.12, ezno-checker to 0.0.15 and ezno to 0.0.20
  • Loading branch information
github-actions committed Apr 10, 2024
1 parent b8c2006 commit d86eafe
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 64 deletions.
80 changes: 40 additions & 40 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
name = "ezno"
description = "A JavaScript type checker and compiler. For use as a library or through the CLI"
authors = ["Ben <kaleidawave@gmail.com>"]
version = "0.0.19"
version = "0.0.20"
edition = "2021"
license = "MIT"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno/"
Expand Down Expand Up @@ -48,13 +48,13 @@ serde_json = "1.0"

[dependencies.checker]
path = "./checker"
version = "0.0.14"
version = "0.0.15"
features = ["ezno-parser", "serde-serialize"]
package = "ezno-checker"

[dependencies.parser]
path = "./parser"
version = "0.1.3"
version = "0.1.4"
features = ["extras"]
package = "ezno-parser"

Expand Down
4 changes: 2 additions & 2 deletions checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ezno-checker"
description = "A type checker for JavaScript"
version = "0.0.14"
version = "0.0.15"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno"
Expand Down Expand Up @@ -56,6 +56,6 @@ wasm-bindgen = "=0.2.89"
[dependencies.parser]
path = "../parser"
optional = true
version = "0.1.3"
version = "0.1.4"
features = ["extras"]
package = "ezno-parser"
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ezno-parser"
description = "Parser and AST definitions for Ezno"
authors = ["Ben <kaleidawave@gmail.com>"]
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
Expand Down Expand Up @@ -32,7 +32,7 @@ extras = []
full-typescript = []

[dependencies]
visitable-derive = { path = "./visitable-derive", version = "0.0.5", package = "ezno-parser-visitable-derive" }
visitable-derive = { path = "./visitable-derive", version = "0.0.6", package = "ezno-parser-visitable-derive" }

derive-finite-automaton = "0.2"
derive-debug-extras = { version = "0.3", features = [
Expand Down
4 changes: 2 additions & 2 deletions parser/generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ezno-ast-generator"
description = "Quasi-quoted constant compiled TS definitions for Ezno AST"
authors = ["Ben <kaleidawave@gmail.com>"]
version = "0.0.11"
version = "0.0.12"
edition = "2021"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
Expand All @@ -17,7 +17,7 @@ proc-macro = true
quote = "1.0"
proc-macro2 = "1.0"
self-rust-tokenize = "0.3.3"
ezno-parser = { path = "..", version = "0.1.3", features = [
ezno-parser = { path = "..", version = "0.1.4", features = [
"self-rust-tokenize",
] }

Expand Down
2 changes: 1 addition & 1 deletion parser/visitable-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ezno-parser-visitable-derive"
description = "Derives 'Visitable' trait for Ezno AST"
authors = ["Ben <kaleidawave@gmail.com>"]
version = "0.0.5"
version = "0.0.6"
edition = "2021"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
Expand Down
12 changes: 6 additions & 6 deletions src/js-based-plugin/package-lock.json

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

0 comments on commit d86eafe

Please sign in to comment.