Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Jul 3, 2020
1 parent 2b0dc32 commit be07aae
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

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

### 1.1.3 / 2020.07.03

Changes in the CLI:

- fix(cli): Change seek offset type from i32 to i64 (#6518)
- fix(cli/body): Maximum call stack size exceeded error (#6537)
- fix(cli/doc): Doc printer missing [] around tuple type (#6523)
- fix(cli/js): Buffer.bytes() ArrayBuffer size (#6511)
- fix(cli/js): Fix conditional types for process sockets (#6275)
- fix(cli/upgrade): Upgrade fails on Windows with space in temp path (#6522)
- fix: Lock file for dynamic imports (#6569)
- fix: Move ImportMeta to deno.ns lib (#6588)
- fix: Net permissions didn't account for default ports (#6606)
- refactor: Improvements to TsCompiler and its tests (#6576)
- upgrade: deno_lint 0.1.15 (#6580, #6614)
- upgrade: dprint-plugin-typescript 0.19.5 (#6527, #6614)

Changes in std version 0.60.0:

- feat(std/asserts): Allow assert functions to specify type parameter (#6413)
- feat(std/datetime): Add is leap and difference functions (#4857)
- feat(std/io): Add fromStreamReader, fromStreamWriter (#5789, #6535)
- feat(std/node): Add Buffer.allocUnsafe (#6533)
- feat(std/node): Add Buffer.isEncoding (#6521)
- feat(std/node): Support hex/base64 encoding in fs.readFile/fs.writeFile
(#6512)
- feat(std/wasi) Implement fd_filestat_get (#6555)
- feat(std/wasi) Implement fd_filestat_set_size (#6558)
- feat(std/wasi): Implement fd_datasync (#6556)
- feat(std/wasi): Implement fd_sync (#6560)
- fix(std/http): Catch errors on file_server response.send (#6285)
- fix(std/http): Support ipv6 parsing (#5263)
- fix(std/log): Print "{msg}" when log an empty line (#6381)
- fix(std/node): Add fill & encoding args to Buffer.alloc (#6526)
- fix(std/node): Do not use absolute urls (#6562)
- fix(std/wasi): path_filestat_get padding (#6509)
- fix(std/wasi): Use lookupflags for path_filestat_get (#6530)
- refactor(std/http): Cookie types to not require full ServerRequest object
(#6577)

### 1.1.2 / 2020.06.26

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

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

[build-dependencies]
deno_core = { path = "../core", version = "0.48.1" }
deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
deno_core = { path = "../core", version = "0.48.3" }
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }

[dependencies]
deno_core = { path = "../core", version = "0.48.2" }
deno_core = { path = "../core", version = "0.48.3" }
deno_lint = "0.1.15"
deno_typescript = { path = "../deno_typescript", version = "0.48.2" }
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }

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

[package]
name = "deno_core"
version = "0.48.2"
version = "0.48.3"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 deletions deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.48.2"
version = "0.48.3"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
Expand All @@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"

[dependencies]
deno_core = { path = "../core", version = "0.48.2" }
deno_core = { path = "../core", version = "0.48.3" }
serde_json = "1.0.55"
serde = { version = "1.0.112", features = ["derive"] }
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.59.0";
export const VERSION = "0.60.0";

0 comments on commit be07aae

Please sign in to comment.