Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release crates #9847

Merged
merged 4 commits into from
Mar 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
target/*/.*
target/*/build
target/*/deps
key: cargo-cache-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
restore-keys: cargo-cache-${{ runner.os }}-
key: cargo-cache-a-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
restore-keys: cargo-cache-a-${{ runner.os }}-

- name: Install rust
uses: hecrj/setup-rust-action@v1
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ harness = false
path = "./bench/main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.81.0" }
deno_runtime = { path = "../runtime", version = "0.9.3" }
deno_core = { path = "../core", version = "0.82.0" }
deno_runtime = { path = "../runtime", version = "0.10.0" }
regex = "1.4.3"
serde = { version = "1.0.123", features = ["derive"] }

Expand All @@ -34,10 +34,10 @@ winapi = "0.3.9"
winres = "0.1.11"

[dependencies]
deno_core = { path = "../core", version = "0.81.0" }
deno_core = { path = "../core", version = "0.82.0" }
deno_doc = "0.1.23"
deno_lint = "0.2.19"
deno_runtime = { path = "../runtime", version = "0.9.3" }
deno_runtime = { path = "../runtime", version = "0.10.0" }

atty = "0.2.14"
base64 = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.81.0"
version = "0.82.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 deletions op_crates/console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_console"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
description = "Implementation of Console API for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
4 changes: 2 additions & 2 deletions op_crates/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_crypto"
version = "0.15.0"
version = "0.16.0"
edition = "2018"
description = "Web Cryptography API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
rand = "0.8.3"

6 changes: 3 additions & 3 deletions op_crates/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_fetch"
version = "0.23.0"
version = "0.24.0"
edition = "2018"
description = "Fetch API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -15,9 +15,9 @@ path = "lib.rs"

[dependencies]
bytes = "1.0.1"
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.123", features = ["derive"] }
tokio = { version = "1.3.0", features = ["full"] }
tokio = { version = "1.4.0", features = ["full"] }
tokio-stream = "0.1.5"
tokio-util = "0.6.5"
4 changes: 2 additions & 2 deletions op_crates/url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_url"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
description = "URL API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
idna = "0.2.1"
serde = { version = "1.0.123", features = ["derive"] }
4 changes: 2 additions & 2 deletions op_crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_web"
version = "0.31.0"
version = "0.32.0"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }

[dev-dependencies]
futures = "0.3.12"
6 changes: 3 additions & 3 deletions op_crates/webgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_webgpu"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
description = "WebGPU implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,8 +14,8 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
tokio = { version = "1.3.0", features = ["full"] }
deno_core = { version = "0.82.0", path = "../../core" }
tokio = { version = "1.4.0", features = ["full"] }
serde = { version = "1.0.123", features = ["derive"] }
wgpu-core = { version = "0.7.0", features = ["trace"] }
wgpu-types = "0.7.0"
4 changes: 2 additions & 2 deletions op_crates/webidl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_webidl"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
description = "WebIDL implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
6 changes: 3 additions & 3 deletions op_crates/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_websocket"
version = "0.6.0"
version = "0.7.0"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,10 +14,10 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.81.0", path = "../../core" }
deno_core = { version = "0.82.0", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.123", features = ["derive"] }
tokio = { version = "1.3.0", features = ["full"] }
tokio = { version = "1.4.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.13.0"
webpki = "0.21.4"
Expand Down
38 changes: 19 additions & 19 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_runtime"
version = "0.9.3"
version = "0.10.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -18,30 +18,30 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.81.0" }
deno_console = { path = "../op_crates/console", version = "0.1.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.15.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.23.0" }
deno_web = { path = "../op_crates/web", version = "0.31.0" }
deno_url = { path = "../op_crates/url", version = "0.1.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.1.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.6.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.2.0" }
deno_core = { path = "../core", version = "0.82.0" }
deno_console = { path = "../op_crates/console", version = "0.2.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.16.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.24.0" }
deno_web = { path = "../op_crates/web", version = "0.32.0" }
deno_url = { path = "../op_crates/url", version = "0.2.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.2.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.7.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.3.0" }

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"

[dependencies]
deno_core = { path = "../core", version = "0.81.0" }
deno_console = { path = "../op_crates/console", version = "0.1.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.15.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.23.0" }
deno_web = { path = "../op_crates/web", version = "0.31.0" }
deno_url = { path = "../op_crates/url", version = "0.1.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.1.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.6.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.2.0" }
deno_core = { path = "../core", version = "0.82.0" }
deno_console = { path = "../op_crates/console", version = "0.2.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.16.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.24.0" }
deno_web = { path = "../op_crates/web", version = "0.32.0" }
deno_url = { path = "../op_crates/url", version = "0.2.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.2.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.7.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.3.0" }

atty = "0.2.14"
dlopen = "0.1.8"
Expand Down