Skip to content

Commit

Permalink
pub(nodex,nodex-api): 🥳 v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
uuhan committed Mar 6, 2022
1 parent d10c8cb commit 847b0b9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This crate aims to make creating native nodejs addons very easy and comfortable.
crate-type = ["cdylib"]

[dependencies.nodex-api]
version = "0.2.1"
version = "0.2.2"
features = ["v8"]
```

Expand All @@ -53,7 +53,7 @@ We have v1,v2,v3,...v8 versions.
crate-type = ["cdylib"]

[dependencies.nodex]
version = "0.2.1"
version = "0.2.2"
features = ["v8"]
```

Expand Down Expand Up @@ -381,7 +381,7 @@ fn script(env: NapiEnv) -> NapiResult<()> {
"#,
)?;

func.call(env.global()?.cast(), ())?;
func.call(env.global()?.object(), ())?;
Ok(())
}
```
Expand Down
2 changes: 1 addition & 1 deletion crates/nodex-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nodex-api"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
readme = "../../README.md"
repository = "https://github.com/uuhan/nodex"
Expand Down
4 changes: 2 additions & 2 deletions crates/nodex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nodex"
version = "0.2.1"
version = "0.2.2"
readme = "./README.md"
edition = "2021"
repository = "https://github.com/uuhan/nodex"
Expand All @@ -11,7 +11,7 @@ description = "nodex for ease of creating nodejs native addon."

[dependencies.nodex-api]
path = "../nodex-api"
version = "0.2.1"
version = "0.2.2"

[features]
default = ["v1"]
Expand Down

0 comments on commit 847b0b9

Please sign in to comment.