This commit is contained in:
Bartek Iwańczuk 2020-05-22 20:00:28 +02:00 committed by GitHub
parent 1a6c541327
commit 526c9196e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 25 additions and 7 deletions

6
Cargo.lock generated
View File

@ -460,7 +460,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"atty",
"base64 0.12.0",
@ -513,7 +513,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.45.1"
version = "0.45.2"
dependencies = [
"derive_deref",
"downcast-rs",
@ -529,7 +529,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
version = "0.45.1"
version = "0.45.2"
dependencies = [
"deno_core",
"serde",

View File

@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
### 1.0.2 / 2020.05.22
Changes in the CLI:
- fix: --inspect flag working like --inspect-brk (#5697)
- fix: Disallow http imports for modules loaded over https (#5680)
- fix: Redirects handling in module analysis (#5726)
- fix: SWC lexer settings and silent errors (#5752)
- fix: TS type imports (#5733)
- fix(fmt): Do not panic on new expr with no parens. (#5734)
- fix(cli/js/streams): High water mark validation (#5681)
Changes in std version 0.53.0:
- fix(std/http): file_server's target directory (#5695)
- feat(std/hash): add md5 (#5719)
- refactor: Move std/fmt/sprintf.ts to std/fmt/printf.ts (#4567)
### 1.0.1 / 2020.05.20
Changes in the CLI:

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.0.1"
version = "1.0.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"

View File

@ -2,7 +2,7 @@
[package]
name = "deno_core"
version = "0.45.1"
version = "0.45.2"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]

View File

@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.45.1"
version = "0.45.2"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"

View File

@ -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.52.0";
export const VERSION = "0.53.0";