summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-02-20 10:29:21 -0500
committerRyan Dahl <ry@tinyclouds.org>2020-02-20 10:57:42 -0500
commita0d3b4ebc509d9e5dfca555084fd1100e114664a (patch)
tree0f152d07480588953f4a6087d773d4840f308804
parent7e49d96cbcde1e8eb89d0fdd499be473822b725b (diff)
v0.34.0
-rw-r--r--Cargo.lock16
-rw-r--r--Releases.md18
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 34 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 61fe6ca98..5fe439a91 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -344,7 +344,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.33.0"
+version = "0.34.0"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -353,8 +353,8 @@ dependencies = [
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "deno_core 0.33.0",
- "deno_typescript 0.33.0",
+ "deno_core 0.34.0",
+ "deno_typescript 0.34.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)",
"dprint-plugin-typescript 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -393,7 +393,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.33.0"
+version = "0.34.0"
dependencies = [
"derive_deref 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -409,9 +409,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.33.0"
+version = "0.34.0"
dependencies = [
- "deno_core 0.33.0",
+ "deno_core 0.34.0",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -1918,8 +1918,8 @@ dependencies = [
name = "test_plugin"
version = "0.0.1"
dependencies = [
- "deno 0.33.0",
- "deno_core 0.33.0",
+ "deno 0.34.0",
+ "deno_core 0.34.0",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index 1a3306ece..4dedbd9b9 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.34.0 / 2020.02.20
+
+- feat: Asynchronous event iteration node polyfill (#4016)
+- feat: Deno.makeTempFile (#4024)
+- feat: Support loading additional TS lib files (#3863)
+- feat: add --cert flag for http client (#3972)
+- feat(std/io): Export readDelim(), readStringDelim() and readLines() from
+ bufio.ts (#4019)
+- fix(deno test): support directories as arguments (#4011)
+- fix: Enable TS strict mode by default (#3899)
+- fix: detecting AMD like imports (#4009)
+- fix: emit when bundle contains single module (#4042)
+- fix: mis-detecting imports on JavaScript when there is no checkJs (#4040)
+- fix: skip non-UTF-8 dir entries in Deno.readDir() (#4004)
+- refactor: remove run_worker_loop (#4028)
+- refactor: rewrite file_fetcher (#4037, #4030)
+- upgrade: dprint 0.6.0 (#4026)
+
### v0.33.0 / 2020.02.13
- feat(std/http): support trailer headers (#3938, #3989)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index f6c0c8e0f..435094987 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.33.0"
+version = "0.34.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -19,12 +19,12 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.33.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.33.0" }
+deno_core = { path = "../core", version = "0.34.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.34.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.33.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.33.0" }
+deno_core = { path = "../core", version = "0.34.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.34.0" }
ansi_term = "0.11.0"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 9b642991b..0c1fb21ce 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.33.0"
+version = "0.34.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 3d36aad58..7f772b96f 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.33.0"
+version = "0.34.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_core = { path = "../core", version = "0.33.0" }
+deno_core = { path = "../core", version = "0.34.0" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }