mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
v1.0.2
This commit is contained in:
parent
1a6c541327
commit
526c9196e2
6 changed files with 25 additions and 7 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -460,7 +460,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.0",
|
"base64 0.12.0",
|
||||||
|
@ -513,7 +513,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.45.1"
|
version = "0.45.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_deref",
|
"derive_deref",
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
|
@ -529,7 +529,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.45.1"
|
version = "0.45.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno_core",
|
"deno_core",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
18
Releases.md
18
Releases.md
|
@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases
|
||||||
We also have one-line install commands at
|
We also have one-line install commands at
|
||||||
https://github.com/denoland/deno_install
|
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
|
### 1.0.1 / 2020.05.20
|
||||||
|
|
||||||
Changes in the CLI:
|
Changes in the CLI:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.45.1"
|
version = "0.45.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.45.1"
|
version = "0.45.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "To compile TypeScript to a snapshot during build.rs"
|
description = "To compile TypeScript to a snapshot during build.rs"
|
||||||
repository = "https://github.com/denoland/deno"
|
repository = "https://github.com/denoland/deno"
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
* 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.
|
* will match versions with cli as we have in the past.
|
||||||
*/
|
*/
|
||||||
export const VERSION = "0.52.0";
|
export const VERSION = "0.53.0";
|
||||||
|
|
Loading…
Reference in a new issue