Skip to content

Commit

Permalink
chore: release crates (denoland#8765)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Dec 14, 2020
1 parent a19fea9 commit 025c0a1
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 26 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

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

[build-dependencies]
deno_core = { path = "../core", version = "0.72.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" }
deno_web = { path = "../op_crates/web", version = "0.23.0" }
deno_core = { path = "../core", version = "0.73.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.16.0" }
deno_web = { path = "../op_crates/web", version = "0.24.0" }
regex = "1.3.9"
serde = { version = "1.0.116", features = ["derive"] }

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

[dependencies]
deno_core = { path = "../core", version = "0.72.0" }
deno_core = { path = "../core", version = "0.73.0" }
deno_doc = "0.1.18"
deno_lint = "0.2.13"
deno_runtime = { path = "../runtime", version = "0.2.1" }
deno_runtime = { path = "../runtime", version = "0.3.0" }

atty = "0.2.14"
base64 = "0.12.3"
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-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.72.0"
version = "0.73.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/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.6.0"
version = "0.7.0"
edition = "2018"
description = "Collection of WebCrypto APIs"
authors = ["the Deno authors"]
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.72.0", path = "../../core" }
deno_core = { version = "0.73.0", path = "../../core" }
rand = "0.7.3"

4 changes: 2 additions & 2 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.15.0"
version = "0.16.0"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.72.0", path = "../../core" }
deno_core = { version = "0.73.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", 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.23.0"
version = "0.24.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.72.0", path = "../../core" }
deno_core = { version = "0.73.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }

Expand Down
18 changes: 9 additions & 9 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.2.1"
version = "0.3.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -18,20 +18,20 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.72.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.6.0" }
deno_web = { path = "../op_crates/web", version = "0.23.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" }
deno_core = { path = "../core", version = "0.73.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.7.0" }
deno_web = { path = "../op_crates/web", version = "0.24.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.16.0" }

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

[dependencies]
deno_core = { path = "../core", version = "0.72.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.6.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" }
deno_web = { path = "../op_crates/web", version = "0.23.0" }
deno_core = { path = "../core", version = "0.73.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.7.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.16.0" }
deno_web = { path = "../op_crates/web", version = "0.24.0" }

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

0 comments on commit 025c0a1

Please sign in to comment.