summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-05-04 15:46:39 -0400
committerGitHub <noreply@github.com>2020-05-04 15:46:39 -0400
commit5f67a202ff59f25ea183c261f664a6db06407e17 (patch)
treeffaf940e726db4f73bf1133670819900ca5020b6
parent60f2d57fb7a01a438e99c5d2ea655cfa44641755 (diff)
v1.0.0-rc1
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md32
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml2
5 files changed, 38 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 09542b7e0..9a0383b83 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.42.0"
+version = "1.0.0-rc1"
dependencies = [
"atty",
"base64 0.12.0",
@@ -522,7 +522,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.42.0"
+version = "0.42.1"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -538,7 +538,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.42.0"
+version = "0.42.1"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 0db72e63e..c4b814f4b 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,38 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v1.0.0-rc1 / 2020.05.04
+
+- BREAKING: make WebSocket directly implement AsyncIterable (#5045)
+- BREAKING: remove CLI 'deno script.ts' alias to 'deno run script.ts' (#5026)
+- BREAKING: remove support for JSON imports (#5037)
+- BREAKING: remove window.location and self.location (#5034)
+- BREAKING: reorder std/io/utils copyBytes arguments (#5022, #5021)
+- feat(URL): Support drive letters for file URLs on Windows (#5074)
+- feat(deno install): simplify CLI flags (#5036)
+- feat(deno fmt): Add `deno-fmt-ignore` and `deno-fmt-ignore-file` comment
+ support #5075
+- feat(std): Add sha256 and sha224 support (along with HMAC variants) (#5066)
+- feat(std/node): ability add to path argument to be URL type (#5055)
+- feat(std/node): make process global (#4985)
+- feat(std/node): toString for globals (#5013)
+- feat: Add WritableStreams, TransformStream, TransformStreamController (#5042,
+ #4980)
+- feat: Make WebSocket Reader/Writer (#5002)
+- feat: make Deno.cwd stable (#5068)
+- fix(console): Formatting misalignment on console.table (#5046)
+- fix(deno doc): Better repr for object literal types (#4998)
+- fix(deno fmt): Format `abstract async` as `abstract async` (#5020)
+- fix(std): Use fromFileUrl (#5005)
+- fix(std/http): Hang when content-length unhandled (#5024)
+- fix: Deno.chdir Should require allow-read not allow-write (#5033)
+- fix: Respect NO_COLOR for stack frames (#5051)
+- fix: URL constructor throws confusing error on invalid scheme (#5057)
+- fix: Disallow static import of local modules from remote modules (#5050)
+- fix: Misaligned error reporting on tab char (#5032)
+- refactor(core): Add "prepare_load" hook to ModuleLoader trait (#4866)
+- refactor: Don't expose unstable APIs to runtime (#5061 #4957)
+
### v0.42.0 / 2020.04.29
- BREAKING: "address" renamed to "path" in
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index fc899e2d9..1979232a0 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.42.0"
+version = "1.0.0-rc1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 81ca245ba..82d423467 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.42.0"
+version = "0.42.1"
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 c0b11f9ce..393f10396 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.42.0"
+version = "0.42.1"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"