summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--Releases.md31
-rw-r--r--cli/Cargo.toml6
-rw-r--r--core/Cargo.toml2
-rw-r--r--std/version.ts2
5 files changed, 38 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 65149985e..a71eaae2f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -367,7 +367,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.2.0"
+version = "1.2.1"
dependencies = [
"atty",
"base64 0.12.3",
@@ -420,7 +420,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.49.0"
+version = "0.50.0"
dependencies = [
"derive_deref",
"downcast-rs",
diff --git a/Releases.md b/Releases.md
index 2113e100b..32a8f7ecc 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.2.1 / 2020.07.23
+
+Changes in the CLI:
+
+- fix: IPv6 hostname should be compressed (#6772)
+- fix: Ignore polling errors caused by return() in watchFs (#6785)
+- fix: Improve URL compatibility (#6807)
+- fix: ModuleSpecifier removes relative path parts (#6762)
+- fix: Share reqwest client between fetch calls (#6792)
+- fix: add icon and metadata to deno.exe on Windows (#6693)
+- fix: panic for runtime error in TS compiler (#6758)
+- fix: providing empty source code for missing compiled files (#6760)
+- refactor: Make OpDispatcher a trait (#6736, #6742)
+- refactor: Remove duplicate code and allow filename overwrite for DomFile
+ (#6817, #6830)
+- upgrade: Rust 1.45.0 (#6791)
+- upgrade: rusty_v8 0.7.0 (#6801)
+- upgrade: tokio 0.2.22 (#6838)
+
+Changes in std version 0.62.0:
+
+- BREAKING(std/fs): remove readFileStr and writeFileStr (#6848, #6847)
+- feat(std/encoding): add ascii85 module (#6711)
+- feat(std/node): add string_decoder (#6638)
+- fix(std/encoding/toml): could not parse strings with apostrophes/semicolons
+ (#6781)
+- fix(std/testing): assertThrows inheritance (#6623)
+- fix(std/wasi): remove number overload from rights in path_open (#6768)
+- refactor(std/datetime): improve weekOfYear (#6741)
+- refactor(std/path): enrich the types in parse_format_test (#6803)
+
### 1.2.0 / 2020.07.13
Changes in the CLI:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index c47b292bb..fe08952d7 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.2.0"
+version = "1.2.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -15,14 +15,14 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.49.0" }
+deno_core = { path = "../core", version = "0.50.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
winapi = "0.3.8"
[dependencies]
-deno_core = { path = "../core", version = "0.49.0" }
+deno_core = { path = "../core", version = "0.50.0" }
deno_lint = "0.1.16"
atty = "0.2.14"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 8aa3fb9c5..d0af09ced 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.49.0"
+version = "0.50.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/std/version.ts b/std/version.ts
index 7df219570..b19283ee7 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.61.0";
+export const VERSION = "0.62.0";