summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-06-26 23:45:12 +0200
committerGitHub <noreply@github.com>2020-06-26 17:45:12 -0400
commit5bc130be2722fe54d42004cc48536b390437ede3 (patch)
treed58ea06ac9f73165d81f99a2eacfca7ce9b95953
parent598a7dcc8425c9b377d79dc86e298db862e45b91 (diff)
v1.1.2
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md39
-rw-r--r--cli/Cargo.toml6
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
-rw-r--r--std/version.ts2
6 files changed, 49 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5e39d73a9..c02e8dae6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -377,7 +377,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.1.1"
+version = "1.1.2"
dependencies = [
"atty",
"base64 0.12.3",
@@ -431,7 +431,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.48.1"
+version = "0.48.2"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -462,7 +462,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.48.1"
+version = "0.48.2"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 68f5f158a..4d7bfddd6 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,45 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.1.2 / 2020.06.26
+
+Changes in the CLI:
+
+- fix(web/console): Improve string quoting behaviour (#6457)
+- fix(web/url): Support UNC paths on Windows (#6418)
+- fix(web/url): Support URLSearchParam as Body (#6416)
+- fix: 'Compile' messages changed to 'Check' messages (#6504)
+- fix: Panic when process stdio rid is 0 or invalid (#6405)
+- fix: enable experimental-wasm-bigint (#6443)
+- fix: ipv6 parsing for --allow-net params (#6453, #6472)
+- fix: panic when demanding permissions for hostless URLs (#6500)
+- fix: strings shouldn't be interpreted as file URLs (#6412)
+- refactor: Add ability to output compiler performance information (#6434)
+- refactor: Incremental compilation for TypeScript (#6428, #6489)
+- upgrade: rusty_v8 0.4.2 / V8 8.5.216 (#6503)
+
+Changes in unstable APIs:
+
+- Add Deno.fdatasyncSync and fdatasync (#6403)
+- Add Deno.fstatSync and fstat (#6425)
+- Add Deno.fsyncSync and fsync (#6411)
+- Add Deno.ftruncate and ftruncateSync (#6243)
+- Remove Deno.dir (#6385)
+
+Changes in std version 0.59.0:
+
+- BREAKING(std/encoding/hex): reorder encode & decode arguments (#6410)
+- feat(std/node): support hex / base64 encoding in Buffer (#6414)
+- feat(std/wasi): add wasi_snapshot_preview1 (#6441)
+- fix(std/io): Make BufWriter/BufWriterSync.flush write all chunks (#6269)
+- fix(std/node): fix readFile types, add encoding types (#6451)
+- fix(std/node): global process should usable (#6392)
+- fix(std/node/process): env, argv exports (#6455)
+- fix(std/testing) assertArrayContains should work with any array-like (#6402)
+- fix(std/testing): assertThrows gracefully fails if non-Error thrown (#6330)
+- refactor(std/testing): Remove unuseful statement (#6486)
+- refactor: shift copyBytes and tweak deps to reduce dependencies (#6469)
+
### 1.1.1 / 2020.06.19
- fix: "deno test" should respect NO_COLOR=true (#6371)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 55d058cef..678357f5c 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.1.1"
+version = "1.1.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -19,9 +19,9 @@ deno_core = { path = "../core", version = "0.48.1" }
deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
[dependencies]
-deno_core = { path = "../core", version = "0.48.1" }
+deno_core = { path = "../core", version = "0.48.2" }
deno_lint = "0.1.10"
-deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
+deno_typescript = { path = "../deno_typescript", version = "0.48.2" }
atty = "0.2.14"
base64 = "0.12.2"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 8a691b5db..d2ac26482 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.48.1"
+version = "0.48.2"
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 dcb7998b5..16870998d 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.48.1"
+version = "0.48.2"
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.48.1" }
+deno_core = { path = "../core", version = "0.48.2" }
serde_json = "1.0.55"
serde = { version = "1.0.112", features = ["derive"] }
diff --git a/std/version.ts b/std/version.ts
index d4c1092df..304464190 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.58.0";
+export const VERSION = "0.59.0";