Skip to content

Commit f270633

Browse files
author
github-actions
committed
Release: ezno-parser-visitable-derive to 0.0.9, ezno-parser to 0.1.7, 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
1 parent dab8faf commit f270633

File tree

11 files changed

+54
-72
lines changed

11 files changed

+54
-72
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
name = "ezno"
1515
description = "A fast and correct TypeScript type checker and compiler with additional experiments. For use as a library or through the CLI"
1616
authors = ["Ben <[email protected]>"]
17-
version = "0.0.22"
17+
version = "0.0.23"
1818
edition = "2021"
1919
license = "MIT"
2020
homepage = "https://kaleidawave.github.io/posts/introducing-ezno/"
@@ -64,13 +64,13 @@ glob = "0.3"
6464

6565
[dependencies.checker]
6666
path = "./checker"
67-
version = "0.0.17"
67+
version = "0.0.18"
6868
features = ["ezno-parser", "serde-serialize"]
6969
package = "ezno-checker"
7070

7171
[dependencies.parser]
7272
path = "./parser"
73-
version = "0.1.6"
73+
version = "0.1.7"
7474
features = ["extras"]
7575
package = "ezno-parser"
7676

checker/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ezno-checker"
33
description = "A fast and correct TypeScript type checker with additional experiments"
4-
version = "0.0.17"
4+
version = "0.0.18"
55
license = "MIT"
66
repository = "https://github.com/kaleidawave/ezno"
77
homepage = "https://kaleidawave.github.io/posts/introducing-ezno"
@@ -26,7 +26,7 @@ source-map = { version = "0.15", features = [
2626
"self-rust-tokenize",
2727
] }
2828

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

3131
temporary-annex = "0.1"
3232
derive-enum-from-into = "0.2"
@@ -52,7 +52,7 @@ wasm-bindgen = "=0.2.89"
5252
[dependencies.parser]
5353
path = "../parser"
5454
optional = true
55-
version = "0.1.6"
55+
version = "0.1.7"
5656
features = ["extras"]
5757
package = "ezno-parser"
5858

checker/binary-serialize-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "binary-serialize-derive"
33
description = "A small representation for objects in the Ezno checker, used for caching to make checking faster"
4-
version = "0.0.2"
4+
version = "0.0.3"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/kaleidawave/ezno"

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "ezno-parser"
33
description = "Parser and AST definitions for Ezno"
44
authors = ["Ben <[email protected]>"]
5-
version = "0.1.6"
5+
version = "0.1.7"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/kaleidawave/ezno"
@@ -32,7 +32,7 @@ extras = []
3232
full-typescript = []
3333

3434
[dependencies]
35-
visitable-derive = { path = "./visitable-derive", version = "0.0.8", package = "ezno-parser-visitable-derive" }
35+
visitable-derive = { path = "./visitable-derive", version = "0.0.9", package = "ezno-parser-visitable-derive" }
3636

3737
derive-finite-automaton = "0.2"
3838
derive-debug-extras = { version = "0.3", features = [

parser/generator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "ezno-ast-generator"
33
description = "Quasi-quoted constant compiled TS definitions for Ezno AST"
44
authors = ["Ben <[email protected]>"]
5-
version = "0.0.14"
5+
version = "0.0.15"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/kaleidawave/ezno"
@@ -17,7 +17,7 @@ proc-macro = true
1717
quote = "1.0"
1818
proc-macro2 = "1.0"
1919
self-rust-tokenize = "0.3.3"
20-
ezno-parser = { path = "..", version = "0.1.6", features = [
20+
ezno-parser = { path = "..", version = "0.1.7", features = [
2121
"self-rust-tokenize",
2222
] }
2323

parser/visitable-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "ezno-parser-visitable-derive"
33
description = "Derives 'Visitable' trait for Ezno AST"
44
authors = ["Ben <[email protected]>"]
5-
version = "0.0.8"
5+
version = "0.0.9"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/kaleidawave/ezno"

src/js-based-plugin/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js-based-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unplugin-ezno",
3-
"version": "0.0.22",
3+
"version": "0.0.23",
44
"description": "Ezno as a plugin",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"dependencies": {
17-
"ezno": "^0.0.22",
17+
"ezno": "^0.0.23",
1818
"unplugin": "^1.3.1"
1919
},
2020
"keywords": [

src/js-cli-and-library/package-lock.json

Lines changed: 3 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)