mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v0.3.5
This commit is contained in:
parent
bdc455dd25
commit
b965c7ab36
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -199,11 +199,11 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "0.3.4"
|
||||
version = "0.3.5"
|
||||
dependencies = [
|
||||
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"deno_core 0.0.1",
|
||||
"deno_core 0.3.5",
|
||||
"dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"flatbuffers 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -235,7 +235,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.0.1"
|
||||
version = "0.3.5"
|
||||
dependencies = [
|
||||
"futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -17,7 +17,7 @@ path = "cli/main.rs"
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.3.4"
|
||||
version = "0.3.5"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
|
24
Releases.md
24
Releases.md
@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### v0.3.5 / 2019.03.28
|
||||
|
||||
In deno:
|
||||
|
||||
- Add Process.stderrOutput() (#1828)
|
||||
- Check params in Event and CustomEvent (#2011, #1997)
|
||||
- Merge --reload and --recompile flags (#2003)
|
||||
- Add Deno.openSync, .readSync, .writeSync, .seekSync (#2000)
|
||||
- Do not close file on invalid seek mode (#2004)
|
||||
- Fix bug when shared queue is overflowed (#1992)
|
||||
- core: Resolve callback moved from Behavior to mod_instantiate() (#1999)
|
||||
- core: libdeno and DenoCore renamed to Deno.core (#1998)
|
||||
- core: Allow terminating an Isolate from another thread (#1982)
|
||||
|
||||
In deno_std:
|
||||
|
||||
- Add TOML parsing module (#300)
|
||||
- testing: turn off exitOnFail by default (#307, #309)
|
||||
- Fix assertEquals for RegExp & Date (#305)
|
||||
- Fix prettier check in empty files (#302)
|
||||
- remove unnecessary path.resolve in move/readJson/writeJson (#292)
|
||||
- fix: fs.exists not work for symlink (#291)
|
||||
- Add prettier styling options (#281)
|
||||
|
||||
### v0.3.4 / 2019.03.20
|
||||
|
||||
In deno itself:
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.0.1"
|
||||
version = "0.3.5"
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
|
Loading…
Reference in New Issue
Block a user