diff --git a/Cargo.lock b/Cargo.lock index 61fe6ca98f..5fe439a913 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 1a3306ecef..4dedbd9b96 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 f6c0c8e0f9..4350949872 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 9b642991b1..0c1fb21ce5 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 3d36aad58b..7f772b96fe 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"] }