summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-05-09 21:37:22 +0200
committerGitHub <noreply@github.com>2020-05-09 15:37:22 -0400
commitd8f5b37218715bbc624eb53dd4b7409867b2c803 (patch)
tree04266e231926cc5394f2839d29f92fcb5c21e6c0
parent1fddcc372196466799789350e7950cef1a38d35e (diff)
1.0.0-rc2
-rw-r--r--Cargo.lock6
-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, 39 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f0dcb02ca..08934998b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.0.0-rc1"
+version = "1.0.0-rc2"
dependencies = [
"atty",
"base64 0.12.0",
@@ -522,7 +522,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.42.1"
+version = "0.43.0"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -538,7 +538,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.42.1"
+version = "0.43.0"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index c4b814f4b..c8f4a0e58 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
+### 1.0.0-rc2 / 2020.05.09
+
+- BREAKING(std): Reorg modules, mark as unstable (#5087, #5177)
+- BREAKING(std): Revert "Make WebSocket Reader/Writer" (#5002, #5141)
+- BREAKING: Deno.execPath should require allow-read (#5109)
+- BREAKING: Make Deno.hostname unstable #5108
+- BREAKING: Make Worker with Deno namespace unstable (#5128)
+- BREAKING: Remove support for .wasm imports (#5135)
+- feat(bundle): Add --config flag (#5130)
+- feat(bundle): Format output (#5139)
+- feat(doc): Handle default exports (#4873)
+- feat(repl): Add hint on how to exit REPL (#5143)
+- feat(std/fmt): add 8bit and 24bit ANSI colors (#5168)
+- feat(std/node): add fs.writefile / fs.promises.writeFile (#5054)
+- feat(upgrade): Allow specifying a version (#5156)
+- feat(workers): "crypto" global accessible in Worker scope (#5121)
+- feat: Add support for X-Deno-Warning header (#5161)
+- fix(imports): Fix panic on unsupported scheme (#5131)
+- fix(inspector): Fix inspector hanging when task budget is exceeded (#5083)
+- fix: Allow multiple Set-Cookie headers (#5100)
+- fix: Better error message when DENO_DIR can't be created (#5120)
+- fix: Check destination length in encodeInto in TextEncoder (#5078)
+- fix: Correct type error text (#5150)
+- fix: Remove unnecessary ProcessStdio declaration (#5092)
+- fix: unify display of errors from Rust and JS (#5183)
+- upgrade: rust crates (#5104)
+- upgrade: to rusty_v8 0.4.2 / V8 8.4.300 (#5113)
+
### v1.0.0-rc1 / 2020.05.04
- BREAKING: make WebSocket directly implement AsyncIterable (#5045)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 0e228846b..6d1b5b0f4 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.0.0-rc1"
+version = "1.0.0-rc2"
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.42.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.42.0" }
+deno_core = { path = "../core", version = "0.43.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.43.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.42.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.42.0" }
+deno_core = { path = "../core", version = "0.43.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.43.0" }
atty = "0.2.14"
base64 = "0.12.0"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index cc979bff8..693d13a93 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.42.1"
+version = "0.43.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 7057fc2c7..714fc4049 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.42.1"
+version = "0.43.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.42.0" }
+deno_core = { path = "../core", version = "0.43.0" }
serde_json = "1.0.52"
serde = { version = "1.0.106", features = ["derive"] }