Skip to content

Commit

Permalink
denox-v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbatez committed Feb 3, 2023
1 parent 20f3561 commit 9adf4d7
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 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 @@ -24,7 +24,7 @@ deno_ast = { version = "0.23.2", features = ["transpiling"] }
deno_core = { version = "0.170.0" }
deno_ops = { version = "0.48.0" }
serde_v8 = { version = "0.81.0" }
deno_runtime = { version = "0.2.1", path = "./runtime", package = "denox_runtime" }
deno_runtime = { version = "0.3.0", path = "./runtime", package = "denox_runtime" }
napi_sym = { version = "0.18.0" }
deno_bench_util = { version = "0.82.0" }
test_util = { path = "./test_util" }
Expand All @@ -44,12 +44,12 @@ deno_node = { version = "0.25.0" }
deno_tls = { version = "0.75.0" }
deno_url = { version = "0.88.0" }
deno_web = { version = "0.119.0" }
deno_webgpu = { version = "0.2.1", path = "./ext/webgpu", package = "denox_webgpu" }
deno_webgpu = { version = "0.3.0", path = "./ext/webgpu", package = "denox_webgpu" }
deno_webidl = { version = "0.88.0" }
deno_websocket = { version = "0.93.0" }
deno_webstorage = { version = "0.83.0" }
deno_napi = { version = "0.18.0" }
deno_wsi = { version = "0.2.1", path = "./ext/wsi", package = "denox_wsi" }
deno_wsi = { version = "0.3.0", path = "./ext/wsi", package = "denox_wsi" }

anyhow = "1.0.57"
async-trait = "0.1.51"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A fork of [Deno](https://github.com/denoland/deno) with built-in window system i
Try running the [hello-triangle](./examples/hello-triangle/main.ts) example:

```sh
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.2.1/examples/hello-triangle/main.ts
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.3.0/examples/hello-triangle/main.ts
```

![A red triangle over a green background.](./examples/hello-triangle/screenshot.png)
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "denox"
version = "0.2.1"
version = "0.3.0"
authors.workspace = true
default-run = "denox"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/args/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ Bugs: https://github.com/denoxdev/denox/issues
To execute a script with window system integration:
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.2.1/examples/hello-triangle/main.ts
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.3.0/examples/hello-triangle/main.ts
"
.to_string()
});
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-triangle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example renders a triangle to a window.
## To Run

```
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.2.1/examples/hello-triangle/main.ts
denox run --unstable --wsi https://raw.githubusercontent.com/denoxdev/denox/v0.3.0/examples/hello-triangle/main.ts
```

## Screenshots
Expand Down
2 changes: 1 addition & 1 deletion ext/webgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "denox_webgpu"
version = "0.2.1"
version = "0.3.0"
authors = ["the Deno authors", "Jo Bates"]
edition.workspace = true
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion ext/wsi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "denox_wsi"
version = "0.2.1"
version = "0.3.0"
authors = ["Jo Bates"]
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "denox_runtime"
version = "0.2.1"
version = "0.3.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 9adf4d7

Please sign in to comment.