Skip to content

Commit

Permalink
Release: ezno-parser to 0.1.3, ezno-ast-generator to 0.0.11, ezno-che…
Browse files Browse the repository at this point in the history
…cker to 0.0.14 and ezno to 0.0.19
  • Loading branch information
github-actions committed Jan 3, 2024
1 parent 6608246 commit b74088e
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 43 deletions.
48 changes: 24 additions & 24 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 @@ -30,7 +30,7 @@ result_unit_err = "allow"
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.18"
version = "0.0.19"
edition = "2021"
license = "MIT"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno/"
Expand Down Expand Up @@ -64,13 +64,13 @@ serde_json = "1.0.107"

[dependencies.checker]
path = "./checker"
version = "0.0.13"
version = "0.0.14"
features = ["ezno-parser"]
package = "ezno-checker"

[dependencies.parser]
path = "./parser"
version = "0.1.2"
version = "0.1.3"
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.13"
version = "0.0.14"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
homepage = "https://kaleidawave.github.io/posts/introducing-ezno"
Expand Down Expand Up @@ -48,6 +48,6 @@ erased-serde = "0.4.1"
[dependencies.parser]
path = "../parser"
optional = true
version = "0.1.2"
version = "0.1.3"
features = ["extras"]
package = "ezno-parser"
2 changes: 1 addition & 1 deletion 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.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/kaleidawave/ezno"
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.10"
version = "0.0.11"
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.2", features = [
ezno-parser = { path = "..", version = "0.1.3", features = [
"self-rust-tokenize",
] }

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.18",
"version": "0.0.19",
"description": "Ezno as a plugin",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand All @@ -14,7 +14,7 @@
}
},
"dependencies": {
"ezno": "^0.0.18",
"ezno": "^0.0.19",
"unplugin": "^1.3.1"
},
"keywords": [
Expand Down
4 changes: 2 additions & 2 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.

2 changes: 1 addition & 1 deletion src/js-cli-and-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ezno",
"version": "0.0.18",
"version": "0.0.19",
"description": "A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance",
"license": "MIT",
"repository": "https://github.com/kaleidawave/ezno",
Expand Down

0 comments on commit b74088e

Please sign in to comment.