mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v0.26.0
This commit is contained in:
parent
e6228bc3c4
commit
0ce9011edc
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -269,7 +269,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
dependencies = [
|
||||
"downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -283,15 +283,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_cli"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"deno 0.25.0",
|
||||
"deno_typescript 0.25.0",
|
||||
"deno 0.26.0",
|
||||
"deno_typescript 0.26.0",
|
||||
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -331,9 +331,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
dependencies = [
|
||||
"deno 0.25.0",
|
||||
"deno 0.26.0",
|
||||
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@ -1539,8 +1539,8 @@ dependencies = [
|
||||
name = "test_plugin"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"deno 0.25.0",
|
||||
"deno_cli 0.25.0",
|
||||
"deno 0.26.0",
|
||||
"deno_cli 0.26.0",
|
||||
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
11
Releases.md
11
Releases.md
@ -6,6 +6,17 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### v0.26.0 / 2019.12.05
|
||||
|
||||
- feat: Add --no-remote, rename --no-fetch to --cached-only (#3417)
|
||||
- feat: Native plugins AKA dlopen (#3372)
|
||||
- fix: Improve html for file_server (#3423)
|
||||
- fix: MacOS Catalina build failures (#3441)
|
||||
- fix: Realpath behavior in windows (#3425)
|
||||
- fix: Timer/microtask ordering (#3439)
|
||||
- fix: Tweaks to arg_hacks and add v8-flags to repl (#3409)
|
||||
- refactor: Disable eager polling for ops (#3434)
|
||||
|
||||
### v0.25.0 / 2019.11.26
|
||||
|
||||
- feat: Support named exports on bundles (#3352)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_cli"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -19,11 +19,11 @@ name = "deno"
|
||||
path = "main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.25.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.26.0" }
|
||||
|
||||
[dependencies]
|
||||
deno = { path = "../core", version = "0.25.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.25.0" }
|
||||
deno = { path = "../core", version = "0.26.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.26.0" }
|
||||
|
||||
ansi_term = "0.12.1"
|
||||
atty = "0.2.13"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_typescript"
|
||||
version = "0.25.0"
|
||||
version = "0.26.0"
|
||||
license = "MIT"
|
||||
description = "To compile TypeScript to a snapshot during build.rs"
|
||||
repository = "https://github.com/denoland/deno"
|
||||
@ -19,6 +19,6 @@ exclude = [
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno = { path = "../core", version = "0.25.0" }
|
||||
deno = { path = "../core", version = "0.26.0" }
|
||||
serde_json = "1.0.41"
|
||||
serde = { version = "1.0.102", features = ["derive"] }
|
||||
|
Loading…
Reference in New Issue
Block a user