summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock16
-rw-r--r--Releases.md28
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 44 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a12141b85..7e67d6e37 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -344,7 +344,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.32.0"
+version = "0.33.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.32.0",
- "deno_typescript 0.32.0",
+ "deno_core 0.33.0",
+ "deno_typescript 0.33.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.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -392,7 +392,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.32.0"
+version = "0.33.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)",
@@ -408,9 +408,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.32.0"
+version = "0.33.0"
dependencies = [
- "deno_core 0.32.0",
+ "deno_core 0.33.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)",
]
@@ -1909,8 +1909,8 @@ dependencies = [
name = "test_plugin"
version = "0.0.1"
dependencies = [
- "deno 0.32.0",
- "deno_core 0.32.0",
+ "deno 0.33.0",
+ "deno_core 0.33.0",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index f0a45b2d4..1a3306ece 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,34 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.33.0 / 2020.02.13
+
+- feat(std/http): support trailer headers (#3938, #3989)
+- feat(std/node): Add readlink, readlinkSync (#3926)
+- feat(std/node): Event emitter node polyfill (#3944, #3959, #3960)
+- feat(deno install): add --force flag and remove yes/no prompt (#3917)
+- feat: Improve support for diagnostics from runtime compiler APIs (#3911)
+- feat: `deno fmt -` formats stdin and print to stdout (#3920)
+- feat: add std/signal (#3913)
+- feat: make testing API built-in Deno.test() (#3865, #3930, #3973)
+- fix(std/http): align serve and serveTLS APIs (#3881)
+- fix(std/http/file_server): don't crash on "%" pathname (#3953)
+- fix(std/path): Use non-capturing groups in globrex() (#3898)
+- fix(deno types): don't panic when piped to head (#3910)
+- fix(deno fmt): support top-level await (#3952)
+- fix: Correctly determine a --cached-only error (#3979)
+- fix: No longer require aligned buffer for shared queue (#3935)
+- fix: Prevent providing --allow-env flag twice (#3906)
+- fix: Remove unnecessary EOF check in Deno.toAsyncIterable (#3914)
+- fix: WASM imports loaded HTTP (#3856)
+- fix: better WebWorker API compatibility (#3828 )
+- fix: deno fmt improvements (#3988)
+- fix: make WebSocket.send() exclusive (#3885)
+- refactor: Improve `deno bundle` by using System instead of AMD (#3965)
+- refactor: Remove conditionals from installer (#3909)
+- refactor: peg workers to a single thread (#3844, #3968, #3931, #3903, #3912,
+ #3907, #3904)
+
### v0.32.0 / 2020.02.03
- BREAKING CHANGE: Replace formatter for "deno fmt", use dprint (#3820, #3824,
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index cdc783d9d..a8f2e1dd3 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.32.0"
+version = "0.33.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.32.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.32.0" }
+deno_core = { path = "../core", version = "0.33.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.33.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.32.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.32.0" }
+deno_core = { path = "../core", version = "0.33.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.33.0" }
ansi_term = "0.11.0"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index f0d1fffc8..9b642991b 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.32.0"
+version = "0.33.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 e2e192635..3d36aad58 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.32.0"
+version = "0.33.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.32.0" }
+deno_core = { path = "../core", version = "0.33.0" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }