summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md34
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 45 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 22fe7366e..16b00365a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -431,7 +431,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.34.0"
+version = "0.35.0"
dependencies = [
"atty",
"base64 0.11.0",
@@ -480,7 +480,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.34.0"
+version = "0.35.0"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -496,7 +496,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.34.0"
+version = "0.35.0"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 4dedbd9b9..b4c890637 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,40 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.35.0 / 2020.02.28
+
+- feat: Deno.fsEvents() (#3452)
+- feat: Support UDP sockets (#3946)
+- feat: Deno.setRaw(rid, mode) to turn on/off raw mode (#3958)
+- feat: Add Deno.formatDiagnostics (#4032)
+- feat: Support TypeScript eval through `deno eval -T` flag (#4141)
+- feat: Support types compiler option in compiler APIs (#4155)
+- feat: add std/examples/chat (#4022, #4109, #4091)
+- feat: support brotli compression for fetch API (#4082)
+- feat: reverse URL lookup for cache (#4175)
+- feat(std/node): add improve os module (#4064, #4075, #4065)
+- feat(std/node): add os Symbol.toPrimitive methods (#4073)
+- fix(fetch): proper error for unsupported protocol (#4085)
+- fix(std/examples): add tests for examples (#4094)
+- fix(std/http): Consume unread body before reading next request (#3990)
+- fix(std/ws): createSecKey logic (#4063)
+- fix(std/ws): provide default close code for ws.close() (#4172)
+- fix(std/ws): sock shouldn't throw eof error when failed to read frame (#4083)
+- fix: Bundles can be sync or async based on top level await (#4124)
+- fix: Move WebAsssembly namespace to shared_globals (#4084)
+- fix: Resolve makeTemp paths from CWD (#4104)
+- fix: Return non-zero exit code on malformed stdin fmt (#4163)
+- fix: add window.self read-only property (#4131)
+- fix: fetch in workers (#4054)
+- fix: fetch_cached_remote_source support redirect URL without base (#4099)
+- fix: issues with JavaScript importing JavaScript. (#4120)
+- fix: rewrite normalize_path (#4143)
+- refactor(std/http): move io functions to http/io.ts (#4126)
+- refactor: Deno.errors (#3936, #4058, #4113, #4093)
+- upgrade: TypeScript 3.8 (#4100)
+- upgrade: dprint 0.7.0 (#4130)
+- upgrade: rusty_v8 0.3.4 (#4179)
+
### v0.34.0 / 2020.02.20
- feat: Asynchronous event iteration node polyfill (#4016)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 976d87cfa..0115938f7 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.34.0"
+version = "0.35.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.34.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.34.0" }
+deno_core = { path = "../core", version = "0.35.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.35.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.34.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.34.0" }
+deno_core = { path = "../core", version = "0.35.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.35.0" }
atty = "0.2.13"
base64 = "0.11.0"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index e5ea520f7..97b9c6455 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.34.0"
+version = "0.35.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 7f772b96f..b79888bd2 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.34.0"
+version = "0.35.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.34.0" }
+deno_core = { path = "../core", version = "0.35.0" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }