From 49dda23f6b936f21de2a3de4be39771f30ddd6e9 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 20 May 2020 12:40:26 -0400 Subject: [PATCH] v1.0.1 --- Cargo.lock | 6 +++--- Releases.md | 39 ++++++++++++++++++++++++++++++++++++++ cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- deno_typescript/Cargo.toml | 2 +- std/version.ts | 2 +- 6 files changed, 46 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53561285b2..3e935f0949 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Releases.md b/Releases.md index 3a45638669..8b99c8fa01 100644 --- a/Releases.md +++ b/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 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b7ffba1df6..56bdadc0ab 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.0.0" +version = "1.0.1" license = "MIT" authors = ["the Deno authors"] edition = "2018" diff --git a/core/Cargo.toml b/core/Cargo.toml index 84869645c2..11289dfa4a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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"] diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml index 1f93717252..086d00f74a 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -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" diff --git a/std/version.ts b/std/version.ts index 3b29e26efd..56b4f16840 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.51.0"; +export const VERSION = "0.52.0";