diff --git a/Cargo.lock b/Cargo.lock index dcb3c7ab559cb43aa0e2366ea344e1da8df0a848..eedf3abcf34a9722c78bf091eeea2d9b2335c2ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.23.0" +version = "0.24.0" dependencies = [ "downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -283,15 +283,15 @@ dependencies = [ [[package]] name = "deno_cli" -version = "0.23.0" +version = "0.24.0" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "deno 0.23.0", - "deno_typescript 0.23.0", + "deno 0.24.0", + "deno_typescript 0.24.0", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -333,9 +333,9 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.23.0" +version = "0.24.0" dependencies = [ - "deno 0.23.0", + "deno 0.24.0", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Releases.md b/Releases.md index 69cf16aceaa4a9cbf0e0536f2342f8836d32fcb8..b14c852e8f927e0178bb46dbecc79daa7db338c9 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.24.0 / 2019.11.14 + +- feat: Add Node compat module std/node (#3319) +- feat: Add permissions.request (#3296) +- feat: Add prettier flags to deno fmt (#3314) +- feat: Allow http server to take { hostname, port } argument (#3233) +- feat: Make bundles fully standalone (#3325) +- feat: Support .wasm via imports (#3328) +- fix: Check for closing status when iterating Listener (#3309) +- fix: Error handling in std/fs/walk() (#3318) +- fix: Exclude prebuilt from deno_src release (#3272) +- fix: Turn on TS strict mode for deno_typescript (#3330) +- fix: URL parse bug (#3316) +- refactor: resources and workers (#3285, #3271, #3274, #3342, #3290) +- upgrade: Prettier 1.19 (#3275, #3305) +- upgrade: Rust deps (#3292) +- upgrade: TypeScript 3.7 (#3275) +- upgrade: V8 8.0.192 + ### v0.23.0 / 2019.11.04 - feat: Add serveTLS and listenAndServeTLS (#3257) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4e2ab18c83a586c9ca83167adad5fb6bb8219087..2cbc021811e0b9019a3b69803ee6e41ca3176e1a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_cli" -version = "0.23.0" +version = "0.24.0" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -19,11 +19,11 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_typescript = { path = "../deno_typescript", version = "0.23.0" } +deno_typescript = { path = "../deno_typescript", version = "0.24.0" } [dependencies] -deno = { path = "../core", version = "0.23.0" } -deno_typescript = { path = "../deno_typescript", version = "0.23.0" } +deno = { path = "../core", version = "0.24.0" } +deno_typescript = { path = "../deno_typescript", version = "0.24.0" } ansi_term = "0.12.1" atty = "0.2.13" diff --git a/core/Cargo.toml b/core/Cargo.toml index 344386277a11a9463d83b18918625d27d9fa3a91..b1f08d2347410a8636a3d60cb669832308ba109e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.23.0" +version = "0.24.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 4290890404eb6daf5ce30f477562beeae3775e59..ebf0ab2bcc07d1a89ef98602d19c4b353068a9ea 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.23.0" +version = "0.24.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 = { path = "../core", version = "0.23.0" } +deno = { path = "../core", version = "0.24.0" } serde_json = "1.0.41" serde = { version = "1.0.102", features = ["derive"] }