Skip to content

Commit

Permalink
v0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jan 9, 2020
1 parent d492c5a commit 525784e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

18 changes: 18 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install

### v0.29.0 / 2020.01.09

- BREAKING CHANGE Remove xeval subcommand (#3630)
- BREAKING CHANGE script arguments should come after '--' (#3621)
- BREAKING CHANGE Deno.mkdir should conform to style guide BREAKING CHANGE
(#3617)
- BREAKING CHANGE Deno.args only includes script args (#3628)
- BREAKING CHANGE Rename crates: 'deno' to 'deno_core' and 'deno_cli' to 'deno'
(#3600)
- feat: Add Deno.create (#3629)
- feat: Add compiler API (#3442)
- fix(ws): Handshake with correctly empty search string (#3587)
- fix(yaml): Export parseAll (#3592)
- perf: TextEncoder.encode improvement (#3596, #3589)
- refactor: Replace libdeno with rusty_v8 (#3556, #3601, #3602, #3605, #3611,
#3613, #3615)
- upgrade: V8 8.1.108 (#3623)

### v0.28.1 / 2020.01.03

- feat(http): make req.body a Reader (#3575)
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "0.28.1"
version = "0.29.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,11 +19,11 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_typescript = { path = "../deno_typescript", version = "0.28.1" }
deno_typescript = { path = "../deno_typescript", version = "0.29.0" }

[dependencies]
deno_core = { path = "../core", version = "0.28.1" }
deno_typescript = { path = "../deno_typescript", version = "0.28.1" }
deno_core = { path = "../core", version = "0.29.0" }
deno_typescript = { path = "../deno_typescript", version = "0.29.0" }

ansi_term = "0.11.0"
atty = "0.2.13"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.28.1"
version = "0.29.0"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.28.1"
version = "0.29.0"
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.28.1" }
deno_core = { path = "../core", version = "0.29.0" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }

0 comments on commit 525784e

Please sign in to comment.