summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md22
-rw-r--r--cli/Cargo.toml8
-rw-r--r--core/Cargo.toml2
-rw-r--r--op_crates/web/Cargo.toml4
-rw-r--r--std/version.ts2
6 files changed, 33 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c220be9a9..efb8c0fca 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -321,7 +321,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.3.0"
+version = "1.3.1"
dependencies = [
"atty",
"base64 0.12.3",
@@ -379,7 +379,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.53.0"
+version = "0.54.0"
dependencies = [
"downcast-rs",
"futures",
@@ -428,7 +428,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"deno_core",
"futures",
diff --git a/Releases.md b/Releases.md
index a2f3ed442..8af49252f 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,28 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.3.1 / 2020.08.21
+
+- fix: Allow isolated "%"s when parsing file URLs (#7108)
+- fix: Blob.arrayBuffer returns Uint8Array (#7086)
+- fix: CLI argument parsing with dash values (#7039)
+- fix: Create Body stream from any valid bodySource (#7128)
+- fix: Granular permission requests/revokes (#7074)
+- fix: Handling of multiple spaces in URLSearchParams (#7068)
+- core: Enable WebAssembly.instantiateStreaming (#7043)
+- core: Add missing export of HeapLimits (#7047)
+- upgrade: swc_ecmascript, deno_lint, dprint (#7098)
+
+Changes in std version 0.66.0:
+
+- BREAKING(std/datetime): Remove currentDayOfYear (#7059)
+- feat(std/node): Add basic asserts (#7091)
+- feat(std/datetime): Generalise parser, add formatter (#6619)
+- fix(std/node): Misnamed assert exports (#7123)
+- fix(std/encoding/toml): Stop TOML parser from detecting numbers in strings.
+ (#7064)
+- fix(std/encoding/csv): Improve error message on ParseError (#7057)
+
### 1.3.0 / 2020.08.13
Changes in the CLI:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index d35ce7951..f1f72045d 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.3.0"
+version = "1.3.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -15,15 +15,15 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.53.0" }
-deno_web = { path = "../op_crates/web", version = "0.3.0" }
+deno_core = { path = "../core", version = "0.54.0" }
+deno_web = { path = "../op_crates/web", version = "0.4.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_core = { path = "../core", version = "0.53.0" }
+deno_core = { path = "../core", version = "0.54.0" }
deno_doc = { version = "0.1.0" }
deno_lint = { version = "0.1.23", features = ["json"] }
diff --git a/core/Cargo.toml b/core/Cargo.toml
index b9ffa3e8f..0e9f53d75 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.53.0"
+version = "0.54.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml
index 8c204c1a7..7d5ca6c2e 100644
--- a/op_crates/web/Cargo.toml
+++ b/op_crates/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.3.0"
+version = "0.4.0"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.53.0", path = "../../core" }
+deno_core = { version = "0.54.0", path = "../../core" }
[dev-dependencies]
futures = "0.3.5"
diff --git a/std/version.ts b/std/version.ts
index 9b4ccd45e..6efc0fe51 100644
--- a/std/version.ts
+++ b/std/version.ts
@@ -4,4 +4,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
-export const VERSION = "0.65.0";
+export const VERSION = "0.66.0";