diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-03 16:36:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 16:36:07 +0100 |
commit | f4cc08c4fc97f86d82b860ac11a134dad75dfdca (patch) | |
tree | 856b87f4faf9a1318e7f8b5ebb2df7c161a90a1a | |
parent | 2b0cf74a8f6335ae4e8ef2dfe1010d2695b1c518 (diff) |
v0.32.0
-rw-r--r-- | Cargo.lock | 16 | ||||
-rw-r--r-- | Releases.md | 31 | ||||
-rw-r--r-- | cli/Cargo.toml | 10 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | deno_typescript/Cargo.toml | 4 |
5 files changed, 47 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock index b2c3e1166..ce5a2da2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,7 +335,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.31.0" +version = "0.32.0" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -344,8 +344,8 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "deno_core 0.31.0", - "deno_typescript 0.31.0", + "deno_core 0.32.0", + "deno_typescript 0.32.0", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "dprint-plugin-typescript 0.3.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.31.0" +version = "0.32.0" dependencies = [ "downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -399,9 +399,9 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.31.0" +version = "0.32.0" dependencies = [ - "deno_core 0.31.0", + "deno_core 0.32.0", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1901,8 +1901,8 @@ dependencies = [ name = "test_plugin" version = "0.0.1" dependencies = [ - "deno 0.31.0", - "deno_core 0.31.0", + "deno 0.32.0", + "deno_core 0.32.0", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Releases.md b/Releases.md index 17522841a..f0a45b2d4 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.32.0 / 2020.02.03 + +- BREAKING CHANGE: Replace formatter for "deno fmt", use dprint (#3820, #3824, + #3842) +- BREAKING CHANGE: Remove std/prettier (#3820) +- BREAKING CHANGE: Remove std/installer (#3843) +- BREAKING CHANGE: Remove --current-thread flag (#3830) +- BREAKING CHANGE: Deno.makeTempDir() checks permissions (#3810) +- feat: deno install in Rust (#3806) +- feat: Improve support of type definitions (#3755) +- feat: deno fetch supports --lock-write (#3787) +- feat: deno eval supports --v8-flags=... (#3797) +- feat: descriptive permission errors (#3808) +- feat: Make fetch API more standards compliant (#3667) +- feat: deno fetch supports multiple files (#3845) +- feat(std/node): Endianness (#3833) +- feat(std/node): Partial os polyfill (#3821) +- feat(std/examples): Bring back xeval (#3822) +- feat(std/encoding): Add base32 support (#3855) +- feat(deno_typescript): Support crate imports (#3814) +- fix: Panic on cache miss (#3784) +- fix: Deno.remove() to properly remove dangling symlinks (#3860) +- refactor: Use tokio::main attribute in lib.rs (#3831) +- refactor: Provide TS libraries for window and worker scope (#3771, #3812, + #3728) +- refactor(deno_core): Error tracking and scope passing (#3783) +- refactor(deno_core): Rename PinnedBuf to ZeroCopyBuf (#3782) +- refactor(deno_core): Change Loader trait (#3791) +- upgrade: Rust 1.41.0 (#3838) +- upgrade: Rust crates (#3829) + ### v0.31.0 / 2020.01.24 - BREAKING CHANGE: remove support for blob: URL in Worker (#3722) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f90532a4c..50f38dad3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.31.0" +version = "0.32.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.31.0" } -deno_typescript = { path = "../deno_typescript", version = "0.31.0" } +deno_core = { path = "../core", version = "0.32.0" } +deno_typescript = { path = "../deno_typescript", version = "0.32.0" } [dependencies] -deno_core = { path = "../core", version = "0.31.0" } -deno_typescript = { path = "../deno_typescript", version = "0.31.0" } +deno_core = { path = "../core", version = "0.32.0" } +deno_typescript = { path = "../deno_typescript", version = "0.32.0" } ansi_term = "0.11.0" atty = "0.2.13" diff --git a/core/Cargo.toml b/core/Cargo.toml index a9c2490a0..fb1a2dd8f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.31.0" +version = "0.32.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 6e0ad128d..e2e192635 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.31.0" +version = "0.32.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.31.0" } +deno_core = { path = "../core", version = "0.32.0" } serde_json = "1.0.44" serde = { version = "1.0.104", features = ["derive"] } |