diff --git a/Cargo.lock b/Cargo.lock index b67fa7744a2b16..054b73bf629223 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -459,7 +459,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.40.0" +version = "0.41.0" dependencies = [ "atty", "base64 0.12.0", @@ -511,7 +511,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.40.0" +version = "0.41.0" dependencies = [ "derive_deref", "downcast-rs", @@ -527,7 +527,7 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.40.0" +version = "0.41.0" dependencies = [ "deno_core", "serde", diff --git a/Releases.md b/Releases.md index eb1b33584a9f50..af3f3f59b537bc 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,39 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.41.0 / 2020.04.16 + +- BREAKING: Improve readdir() and FileInfo interfaces (#4763) +- BREAKING: Remove depracated APIs for mkdir and mkdirSync (#4615) +- BREAKING: Make fetch API more web compatible (#4687) +- BREAKING: Remove std/testing/format.ts (#4749) +- BREAKING: Migrate std/types to deno.land/x/types/ (#4713, #4771) +- feat(doc): support for runtime built-ins (#4635) +- feat(std/log): rotating handler, docs improvements (#4674) +- feat(std/node): Add isPrimitive method (#4673) +- feat(std/node/fs): Add copyFile and copyFileSync methods (#4726) +- feat(std/signal): Add onSignal method (#4696) +- feat(std/testing): Change output of diff (#4697) +- feat(std/http): Verify cookie name (#4685) +- feat(std/multipart): Make readForm() type safe (#4710) +- feat(std/uuid): Add UUID v1 (#4758) +- feat(install): Honor log level arg (#4714) +- feat(workers): Make Worker API more web compatible (#4684, #4734, #4391, + #4737, #4746) +- feat: Add AbortController and AbortSignal API (#4757) +- fix(install): Clean up output on Windows (#4764) +- fix(core): Handle SyntaxError during script compilation (#4770) +- fix(cli): Async stack traces and stack formatting (#4690, #4706, #4715) +- fix(cli): Remove unnecessary namespaces in "deno types" (#4683, #4698, #4718, + #4719, #4736, #4741) +- fix(cli): Panic on invalid UTF-8 string (#4704) +- fix(cli/js/net): Make generator return types iterable (#4661) +- fix(doc): Handle optional and extends fields (#4738, #4739) +- refactor: Event and EventTarget implementation (#4707) +- refactor: Use synchronous syscalls where applicable (#4762) +- refactor: Remove calls to futures::executor::block_on (#4760, #4775) +- upgrade: Rust crates (#4742) + ### v0.40.0 / 2020.04.08 - BREAKING: Rename 'deno fetch' subcommand to 'deno cache' (#4656) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8d57352c4dfaa4..92fc58208f38c6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.40.0" +version = "0.41.0" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -19,12 +19,12 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.40.0" } -deno_typescript = { path = "../deno_typescript", version = "0.40.0" } +deno_core = { path = "../core", version = "0.41.0" } +deno_typescript = { path = "../deno_typescript", version = "0.41.0" } [dependencies] -deno_core = { path = "../core", version = "0.40.0" } -deno_typescript = { path = "../deno_typescript", version = "0.40.0" } +deno_core = { path = "../core", version = "0.41.0" } +deno_typescript = { path = "../deno_typescript", version = "0.41.0" } atty = "0.2.14" base64 = "0.12.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index d1c0d8ac9f672f..7ea32df4629ce2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.40.0" +version = "0.41.0" 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 f29677e263d3dd..782102bc62d623 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.40.0" +version = "0.41.0" license = "MIT" description = "To compile TypeScript to a snapshot during build.rs" repository = "https://github.com/denoland/deno" @@ -19,6 +19,6 @@ exclude = [ path = "lib.rs" [dependencies] -deno_core = { path = "../core", version = "0.40.0" } +deno_core = { path = "../core", version = "0.41.0" } serde_json = "1.0.51" serde = { version = "1.0.106", features = ["derive"] }