diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-22 20:00:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 20:00:28 +0200 |
commit | 526c9196e23af34d1ecd424d09c99c7003c33844 (patch) | |
tree | f43f004db1b371b95e68cbbad89a4678c7136f90 | |
parent | 1a6c5413272d110dd96fa354db28a668f55a4399 (diff) |
v1.0.2
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Releases.md | 18 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | deno_typescript/Cargo.toml | 2 | ||||
-rw-r--r-- | std/version.ts | 2 |
6 files changed, 25 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index 4dfb9b576..8d7391307 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -460,7 +460,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.0.1" +version = "1.0.2" dependencies = [ "atty", "base64 0.12.0", @@ -513,7 +513,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.45.1" +version = "0.45.2" dependencies = [ "derive_deref", "downcast-rs", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.45.1" +version = "0.45.2" dependencies = [ "deno_core", "serde", diff --git a/Releases.md b/Releases.md index 8b99c8fa0..a6f38a86d 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.0.2 / 2020.05.22 + +Changes in the CLI: + +- fix: --inspect flag working like --inspect-brk (#5697) +- fix: Disallow http imports for modules loaded over https (#5680) +- fix: Redirects handling in module analysis (#5726) +- fix: SWC lexer settings and silent errors (#5752) +- fix: TS type imports (#5733) +- fix(fmt): Do not panic on new expr with no parens. (#5734) +- fix(cli/js/streams): High water mark validation (#5681) + +Changes in std version 0.53.0: + +- fix(std/http): file_server's target directory (#5695) +- feat(std/hash): add md5 (#5719) +- refactor: Move std/fmt/sprintf.ts to std/fmt/printf.ts (#4567) + ### 1.0.1 / 2020.05.20 Changes in the CLI: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 94c4a35f2..36e58b0e0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.0.1" +version = "1.0.2" license = "MIT" authors = ["the Deno authors"] edition = "2018" diff --git a/core/Cargo.toml b/core/Cargo.toml index 11289dfa4..ebd10838b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.45.1" +version = "0.45.2" 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 086d00f74..66a278576 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.45.1" +version = "0.45.2" 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 56b4f1684..e05359510 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.52.0"; +export const VERSION = "0.53.0"; |