Skip to content

Commit

Permalink
Release: ezno-parser-visitable-derive to 0.0.9, ezno-parser to 0.1.7,…
Browse files Browse the repository at this point in the history
… ezno-ast-generator to 0.0.15, binary-serialize-derive to 0.0.3, ezno-checker to 0.0.18 and ezno to 0.0.23
  • Loading branch information
github-actions committed Nov 13, 2024
1 parent dab8faf commit f270633
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 72 deletions.
58 changes: 29 additions & 29 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 fast and correct TypeScript type checker and compiler with additional experiments. For use as a library or through the CLI"
authors = ["Ben <kaleidawave@gmail.com>"]
version = "0.0.22"
version = "0.0.23"
edition = "2021"
license = "MIT"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno/"
Expand Down Expand Up @@ -64,13 +64,13 @@ glob = "0.3"

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

[dependencies.parser]
path = "./parser"
version = "0.1.6"
version = "0.1.7"
features = ["extras"]
package = "ezno-parser"

Expand Down
6 changes: 3 additions & 3 deletions checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ezno-checker"
description = "A fast and correct TypeScript type checker with additional experiments"
version = "0.0.17"
version = "0.0.18"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno"
Expand All @@ -26,7 +26,7 @@ source-map = { version = "0.15", features = [
"self-rust-tokenize",
] }

binary-serialize-derive = { path = "./binary-serialize-derive", version = "0.0.2" }
binary-serialize-derive = { path = "./binary-serialize-derive", version = "0.0.3" }

temporary-annex = "0.1"
derive-enum-from-into = "0.2"
Expand All @@ -52,7 +52,7 @@ wasm-bindgen = "=0.2.89"
[dependencies.parser]
path = "../parser"
optional = true
version = "0.1.6"
version = "0.1.7"
features = ["extras"]
package = "ezno-parser"

Expand Down
2 changes: 1 addition & 1 deletion checker/binary-serialize-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "binary-serialize-derive"
description = "A small representation for objects in the Ezno checker, used for caching to make checking faster"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
Expand Down
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.6"
version = "0.1.7"
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.8", package = "ezno-parser-visitable-derive" }
visitable-derive = { path = "./visitable-derive", version = "0.0.9", 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.14"
version = "0.0.15"
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.6", features = [
ezno-parser = { path = "..", version = "0.1.7", 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.8"
version = "0.0.9"
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.

4 changes: 2 additions & 2 deletions src/js-based-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unplugin-ezno",
"version": "0.0.22",
"version": "0.0.23",
"description": "Ezno as a plugin",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand All @@ -14,7 +14,7 @@
}
},
"dependencies": {
"ezno": "^0.0.22",
"ezno": "^0.0.23",
"unplugin": "^1.3.1"
},
"keywords": [
Expand Down
24 changes: 3 additions & 21 deletions src/js-cli-and-library/package-lock.json

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

Loading

0 comments on commit f270633

Please sign in to comment.