diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-03 12:52:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 12:52:01 -0400 |
commit | 515d19d901e7e5dbc04670807a2bd1cea237e9e8 (patch) | |
tree | 6e2e943ea28e126521c1f2d7f67fed2b803e24e5 | |
parent | aa39dfc62f8fc88ebb3dfb01fbc979f30557ca9a (diff) |
v1.0.5
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Releases.md | 16 | ||||
-rw-r--r-- | cli/Cargo.toml | 10 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | deno_typescript/Cargo.toml | 4 | ||||
-rw-r--r-- | std/version.ts | 2 |
6 files changed, 28 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock index 705f29d54..457e27084 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.0.4" +version = "1.0.5" dependencies = [ "atty", "base64 0.12.1", @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.47.0" +version = "0.47.1" dependencies = [ "derive_deref", "downcast-rs", @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.47.0" +version = "0.47.1" dependencies = [ "deno_core", "serde", diff --git a/Releases.md b/Releases.md index f06fae344..8d86ce47d 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,22 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.0.5 / 2020.06.03 + +Changes in the CLI: + +- fix(fetch): Support 101 status code (#6059) +- fix: REPL BorrowMutError panic (#6055) +- fix: dynamic import BorrowMutError (#6065) +- upgrade: dprint 0.19.1 and swc_ecma_parser 0.24.3 (#6068) +- upgrade: rusty_v8 0.5.0 (#6070) + +Changes in std version 0.56.0: + +- feat(std/testing): benching progress callback (#5941) +- feat(std/encoding): add base64url module (#5976) +- fix(std/testing/asserts): Format values in assertArrayContains() (#6060) + ### 1.0.4 / 2020.06.02 Changes in the CLI: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index df90d9f15..77a1b64b0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.0.4" +version = "1.0.5" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -15,12 +15,12 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.47.0" } -deno_typescript = { path = "../deno_typescript", version = "0.47.0" } +deno_core = { path = "../core", version = "0.47.1" } +deno_typescript = { path = "../deno_typescript", version = "0.47.1" } [dependencies] -deno_core = { path = "../core", version = "0.47.0" } -deno_typescript = { path = "../deno_typescript", version = "0.47.0" } +deno_core = { path = "../core", version = "0.47.1" } +deno_typescript = { path = "../deno_typescript", version = "0.47.1" } atty = "0.2.14" base64 = "0.12.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 8acea9283..93da1dc90 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.47.0" +version = "0.47.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 d3c7b089e..50802ce42 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.47.0" +version = "0.47.1" 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.47.0" } +deno_core = { path = "../core", version = "0.47.1" } serde_json = "1.0.53" serde = { version = "1.0.111", features = ["derive"] } diff --git a/std/version.ts b/std/version.ts index 3822da3b0..2199cdfed 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.55.0"; +export const VERSION = "0.56.0"; |