Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 31, 2020
1 parent b718e6f commit 7446230
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Releases.md
Expand Up @@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install

### 1.2.2 / 2020.07.31

Changes in the CLI:

- fix: Change release build flags to optimize for size (#6907)
- fix: Fix file URL to path conversion on Windows (#6920)
- fix: deno-types, X-TypeScript-Types precedence (#6761)
- fix: downcast from SwcDiagnosticBuffer to OpError (#6909)
- perf: Use SWC to strip types for "--no-check" flag (#6895)
- upgrade: deno_lint, dprint, swc (#6928, #6869)
- feat(unstable): add "--ignore" flag to deno fmt (#6890)

Changes in std version 0.63.0:

- feat(std/async): add pooledMap utility (#6898)
- fix(std/json): Add newline at the end of json files (#6885)
- fix(std/path): Percent-decode in fromFileUrl() (#6913)
- fix(std/tar): directory type bug (#6905)

### 1.2.1 / 2020.07.23

Changes in the CLI:
Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.2.1"
version = "1.2.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -15,14 +15,14 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.50.0" }
deno_core = { path = "../core", version = "0.51.0" }

[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
winapi = "0.3.8"

[dependencies]
deno_core = { path = "../core", version = "0.50.0" }
deno_core = { path = "../core", version = "0.51.0" }
deno_lint = "0.1.20"

atty = "0.2.14"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.50.0"
version = "0.51.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion std/version.ts
Expand Up @@ -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.62.0";
export const VERSION = "0.63.0";

0 comments on commit 7446230

Please sign in to comment.