summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-10-28 12:03:09 -0400
committerRy Dahl <ry@tinyclouds.org>2019-10-28 14:12:12 -0400
commit71efe6f2c530d1cb9e8a2679f5778e2c034a9d0d (patch)
tree6ee0e8f57302f165edd3fa6ca05257830b03d70d
parentff9df0c321eb56c7f89f5ccdaa301453f22f708e (diff)
v0.22.0
-rw-r--r--Cargo.lock12
-rw-r--r--Releases.md22
-rw-r--r--cli/Cargo.toml8
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 35 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c761335c5..57e329531 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.21.0"
+version = "0.22.0"
dependencies = [
"downcast-rs 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -267,14 +267,14 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.21.0"
+version = "0.22.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)",
"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.21.0",
- "deno_typescript 0.21.0",
+ "deno 0.22.0",
+ "deno_typescript 0.22.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -316,9 +316,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.21.0"
+version = "0.22.0"
dependencies = [
- "deno 0.21.0",
+ "deno 0.22.0",
"serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index 15fcdc890..b59339ac6 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,28 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.22.0 / 2019.10.28
+
+- feat: Deno.listenTLS (#3152)
+- feat: Publish source tarballs for releases (#3203)
+- feat: Support named imports/exports for subset of properties in JSON modules
+ (#3210)
+- feat: Use web standard Permissions API (#3200)
+- feat: Remove --no-prompt flag, fail on missing permissions (#3183)
+- feat: top-level-for-await (#3212)
+- feat: Add ResourceTable in core (#3150)
+- feat: Re-enable standard stream support for fetch bodies (#3192)
+- feat: Add CustomInspect for Headers (#3130)
+- fix: Cherry-pick depot_tools 6a1d778 to fix macOS Cataliona issues (#3175)
+- fix: Remove runtime panics in op dispatch (#3176, #3202, #3131)
+- fix: BufReader.readString to actually return Deno.EOF at end (#3191)
+- perf: faster TextDecoder (#3180, #3204)
+- chore: Reenable std tests that were disabled during merge (#3159)
+- chore: Remove old website (#3194, #3181)
+- chore: Use windows-2019 image in Github Actions (#3198)
+- chore: use v0.21.0 for subcommands (#3168)
+- upgrade: V8 to 7.9.317.12 (#3208)
+
### v0.21.0 / 2019.10.19
- feat: --reload flag to take arg for partial reload (#3109)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index a9fd17ce2..8c1474965 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cli"
-version = "0.21.0"
+version = "0.22.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.21.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
[dependencies]
-deno = { path = "../core", version = "0.21.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.21.0" }
+deno = { path = "../core", version = "0.22.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
ansi_term = "0.12.1"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index cbc19edbc..f38f61e4a 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.21.0"
+version = "0.22.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index 8fb2eaed2..98280ffc3 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.21.0"
+version = "0.22.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.21.0" }
+deno = { path = "../core", version = "0.22.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }