Skip to content

Commit

Permalink
chore: release crates (denoland#10164)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Apr 13, 2021
1 parent d46b37f commit 1be65bb
Show file tree
Hide file tree
Showing 14 changed files with 60 additions and 59 deletions.
24 changes: 12 additions & 12 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.83.0" }
deno_runtime = { path = "../runtime", version = "0.10.1" }
deno_core = { path = "../core", version = "0.84.0" }
deno_runtime = { path = "../runtime", version = "0.11.0" }
regex = "1.4.3"
serde = { version = "1.0.125", features = ["derive"] }

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

[dependencies]
deno_core = { path = "../core", version = "0.83.0" }
deno_core = { path = "../core", version = "0.84.0" }
deno_doc = "0.2.1"
deno_lint = "0.3.0"
deno_runtime = { path = "../runtime", version = "0.10.1" }
deno_runtime = { path = "../runtime", version = "0.11.0" }

atty = "0.2.14"
base64 = "0.13.0"
Expand Down
5 changes: 3 additions & 2 deletions 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.83.0"
version = "0.84.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand All @@ -13,6 +13,8 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
serde_v8 = { version = "0.2.0", path = "../serde_v8" }

anyhow = "1.0.40"
futures = "0.3.13"
indexmap = "1.6.2"
Expand All @@ -23,7 +25,6 @@ pin-project = "1.0.6"
rusty_v8 = "0.22.1"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }
serde_v8 = { version = "0.1.0", path = "../serde_v8" }
url = { version = "2.2.1", features = ["serde"] }

[[example]]
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.2.1"
version = "0.3.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.83.0", path = "../../core" }
deno_core = { version = "0.84.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.16.1"
version = "0.17.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.83.0", path = "../../core" }
deno_core = { version = "0.84.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.24.1"
version = "0.25.0"
edition = "2018"
description = "Fetch API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
bytes = "1.0.1"
data-url = "0.1.0"
deno_core = { version = "0.83.0", path = "../../core" }
deno_file = { version = "0.1.0", path = "../file" }
deno_core = { version = "0.84.0", path = "../../core" }
deno_file = { version = "0.2.0", path = "../file" }
http = "0.2.3"
reqwest = { version = "0.11.2", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.125", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions op_crates/file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

[dependencies]
deno_core = { version = "0.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }
uuid = { version = "0.8.2", features = ["v4"] }
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.2.1"
version = "0.3.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.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }
idna = "0.2.2"
serde = { version = "1.0.125", 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.32.1"
version = "0.33.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.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }

[dev-dependencies]
futures = "0.3.13"
4 changes: 2 additions & 2 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.3.1"
version = "0.4.0"
edition = "2018"
description = "WebGPU implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }
tokio = { version = "1.4.0", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.7.0", features = ["trace"] }
Expand Down
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.2.1"
version = "0.3.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.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }
4 changes: 2 additions & 2 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.7.1"
version = "0.8.0"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.83.0", path = "../../core" }
deno_core = { version = "0.84.0", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
tokio = { version = "1.4.0", features = ["full"] }
Expand Down
42 changes: 21 additions & 21 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.10.1"
version = "0.11.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -18,32 +18,32 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.83.0" }
deno_console = { path = "../op_crates/console", version = "0.2.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.16.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.24.1" }
deno_file = { path = "../op_crates/file", version = "0.1.0" }
deno_web = { path = "../op_crates/web", version = "0.32.1" }
deno_url = { path = "../op_crates/url", version = "0.2.1" }
deno_webidl = { path = "../op_crates/webidl", version = "0.2.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.7.1" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.3.1" }
deno_core = { path = "../core", version = "0.84.0" }
deno_console = { path = "../op_crates/console", version = "0.3.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.25.0" }
deno_file = { path = "../op_crates/file", version = "0.2.0" }
deno_web = { path = "../op_crates/web", version = "0.33.0" }
deno_url = { path = "../op_crates/url", version = "0.3.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.3.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.8.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.4.0" }

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

[dependencies]
deno_core = { path = "../core", version = "0.83.0" }
deno_console = { path = "../op_crates/console", version = "0.2.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.16.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.24.1" }
deno_file = { path = "../op_crates/file", version = "0.1.0" }
deno_web = { path = "../op_crates/web", version = "0.32.1" }
deno_url = { path = "../op_crates/url", version = "0.2.1" }
deno_webidl = { path = "../op_crates/webidl", version = "0.2.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.7.1" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.3.1" }
deno_core = { path = "../core", version = "0.84.0" }
deno_console = { path = "../op_crates/console", version = "0.3.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.25.0" }
deno_file = { path = "../op_crates/file", version = "0.2.0" }
deno_web = { path = "../op_crates/web", version = "0.33.0" }
deno_url = { path = "../op_crates/url", version = "0.3.0" }
deno_webidl = { path = "../op_crates/webidl", version = "0.3.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.8.0" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.4.0" }

atty = "0.2.14"
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion serde_v8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_v8"
version = "0.1.0"
version = "0.2.0"
authors = ["the Deno authors"]
edition = "2018"
description = "Rust to V8 serialization and deserialization"
Expand Down

0 comments on commit 1be65bb

Please sign in to comment.