mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.0.1
This commit is contained in:
parent
765acd3170
commit
49dda23f6b
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -460,7 +460,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.0",
|
||||
@ -513,7 +513,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.45.0"
|
||||
version = "0.45.1"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
@ -529,7 +529,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.45.0"
|
||||
version = "0.45.1"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
39
Releases.md
39
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.0.1 / 2020.05.20
|
||||
|
||||
Changes in the CLI:
|
||||
|
||||
- fix(doc): crash on formatting type predicate (#5651)
|
||||
- fix: Implement Deno.kill for windows (#5347)
|
||||
- fix: Implement Deno.symlink() for windows (#5533)
|
||||
- fix: Make Deno.remove() work with directory symlinks on windows (#5488)
|
||||
- fix: Mark Deno.pid and Deno.noColor as const (#5593)
|
||||
- fix: Remove debug prints introduced in e18aaf49c (#5356)
|
||||
- fix: Return error if more than one listener calls `WorkerHandle::get_event()`
|
||||
(#5461)
|
||||
- fix: Simplify fmt::Display for ModuleResolutionError (#5550)
|
||||
- fix: URL utf8 encoding (#5557)
|
||||
- fix: don't panic on Deno.close invalid argument (#5320)
|
||||
- fix: panic if DENO_DIR is a relative path (#5375)
|
||||
- fix: setTimeout and friends have too strict types (#5412)
|
||||
- refactor: rewrite TS dependency analysis in Rust (#5029, #5603)
|
||||
- update: dprint 0.18.4 (#5671)
|
||||
|
||||
Changes in std version 0.52.0:
|
||||
|
||||
- feat(std/bytes): add hasSuffix and contains functions, update docs (#4801)
|
||||
- feat(std/fmt): rgb24 and bgRgb24 can use numbers for color (#5198)
|
||||
- feat(std/hash): add fnv implementation (#5403)
|
||||
- feat(std/node) Export TextDecoder and TextEncoder from util (#5663)
|
||||
- feat(std/node): Add fs.promises.readFile (#5656)
|
||||
- feat(std/node): add util.callbackify (#5415)
|
||||
- feat(std/node): first pass at url module (#4700)
|
||||
- feat(std/node): fs.writeFileSync polyfill (#5414)
|
||||
- fix(std/hash): SHA1 hash of Uint8Array (#5086)
|
||||
- fix(std/http): Add .css to the MEDIA_TYPES. (#5367)
|
||||
- fix(std/io): BufReader should not share the internal buffer across reads
|
||||
(#4543)
|
||||
- fix(std/log): await default logger setup (#5341)
|
||||
- fix(std/node) improve fs.close compatibility (#5649)
|
||||
- fix(std/node): fs.readFile should take string as option (#5316)
|
||||
- fix(std/testing): Provide message and diff for assertStrictEq (#5417)
|
||||
|
||||
### 1.0.0 / 2020.05.13
|
||||
|
||||
Read more about this release at https://deno.land/v1
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.45.0"
|
||||
version = "0.45.1"
|
||||
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.0"
|
||||
version = "0.45.1"
|
||||
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.51.0";
|
||||
export const VERSION = "0.52.0";
|
||||
|
Loading…
Reference in New Issue
Block a user