1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
This commit is contained in:
Ryan Dahl 2020-01-09 13:04:51 -05:00 committed by Ry Dahl
parent d492c5abe3
commit 525784e564
5 changed files with 33 additions and 15 deletions

16
Cargo.lock generated
View file

@ -205,7 +205,7 @@ dependencies = [
[[package]]
name = "deno"
version = "0.28.1"
version = "0.29.0"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
@ -213,8 +213,8 @@ dependencies = [
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"deno_core 0.28.1",
"deno_typescript 0.28.1",
"deno_core 0.29.0",
"deno_typescript 0.29.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.28.1"
version = "0.29.0"
dependencies = [
"downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -269,9 +269,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
version = "0.28.1"
version = "0.29.0"
dependencies = [
"deno_core 0.28.1",
"deno_core 0.29.0",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1321,8 +1321,8 @@ dependencies = [
name = "test_plugin"
version = "0.0.1"
dependencies = [
"deno 0.28.1",
"deno_core 0.28.1",
"deno 0.29.0",
"deno_core 0.29.0",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

View file

@ -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)

View file

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "0.28.1"
version = "0.29.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -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"

View file

@ -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"]

View file

@ -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"
@ -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"] }