mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.0.2
This commit is contained in:
parent
1a6c541327
commit
526c9196e2
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -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",
|
||||
|
18
Releases.md
18
Releases.md
@ -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:
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
|
@ -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"]
|
||||
|
@ -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"
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user