mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.0.0-rc3
This commit is contained in:
parent
f193dde4a9
commit
35e8bc8de6
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -469,7 +469,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.0.0-rc2"
|
||||
version = "1.0.0-rc3"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.0",
|
||||
@ -522,7 +522,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.43.0"
|
||||
version = "0.44.0"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
@ -538,7 +538,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.43.0"
|
||||
version = "0.44.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
12
Releases.md
12
Releases.md
@ -6,6 +6,18 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.0.0-rc3 / 2020.05.12
|
||||
|
||||
- BREAKING: Remove public Rust API for the "deno" crate (#5226)
|
||||
- feat(core): Allow starting isolate from snapshot bytes on the heap (#5187)
|
||||
- fix: Check permissions in SourceFileFetcher (#5011)
|
||||
- fix: Expose ErrorEvent globally (#5222)
|
||||
- fix: Remove default --allow-read perm for deno test (#5208)
|
||||
- fix: Source maps in inspector (#5223)
|
||||
- fix(std/encoding/yaml): Correct exports (#5191)
|
||||
- fix(plugins): prevent segfaults on windows (#5210)
|
||||
- upgrade: dprint 0.17.2 (#5195)
|
||||
|
||||
### 1.0.0-rc2 / 2020.05.09
|
||||
|
||||
- BREAKING(std): Reorg modules, mark as unstable (#5087, #5177)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.0.0-rc2"
|
||||
version = "1.0.0-rc3"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -15,12 +15,12 @@ name = "deno"
|
||||
path = "main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.43.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.43.0" }
|
||||
deno_core = { path = "../core", version = "0.44.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.44.0" }
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.43.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.43.0" }
|
||||
deno_core = { path = "../core", version = "0.44.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.44.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.0"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.43.0"
|
||||
version = "0.44.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_typescript"
|
||||
version = "0.43.0"
|
||||
version = "0.44.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.43.0" }
|
||||
deno_core = { path = "../core", version = "0.44.0" }
|
||||
serde_json = "1.0.52"
|
||||
serde = { version = "1.0.106", features = ["derive"] }
|
||||
|
Loading…
Reference in New Issue
Block a user