mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.2.3
This commit is contained in:
parent
604d008190
commit
92a173bca6
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -373,7 +373,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.2.2"
|
||||
version = "1.2.3"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -431,7 +431,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.51.0"
|
||||
version = "0.52.0"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
@ -464,7 +464,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
22
Releases.md
22
Releases.md
@ -6,6 +6,28 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.2.3 / 2020.08.08
|
||||
|
||||
Changes in the CLI:
|
||||
|
||||
- fix: Never type check in deno info (#6978)
|
||||
- fix: add missing globals to unstable diagnostics (#6960)
|
||||
- fix: add support for non-UTF8 source files (#6789)
|
||||
- fix: hash file names in gen cache (#6911)
|
||||
- refactor: Encode op errors as strings instead of numbers (#6977)
|
||||
- refactor: Op crate for Web APIs (#6906)
|
||||
- refactor: remove repeated code in main.rs (#6954)
|
||||
- upgrade to rusty_v8 0.8.1 / V8 8.6.334 (#6980)
|
||||
- upgrade: deno_lint v0.1.21 (#6985)
|
||||
- upgrade: swc_ecmascript (#6943)
|
||||
- feat(unstable): custom http client for fetch (#6918)
|
||||
|
||||
Changes in std version 0.64.0:
|
||||
|
||||
- fix(std/toml): parser error with inline comments (#6942)
|
||||
- fix(std/encoding/toml): Add boolean support to stringify (#6941)
|
||||
- refactor: Rewrite globToRegExp() (#6963)
|
||||
|
||||
### 1.2.2 / 2020.07.31
|
||||
|
||||
Changes in the CLI:
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.2.2"
|
||||
version = "1.2.3"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -15,15 +15,15 @@ name = "deno"
|
||||
path = "main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.51.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.1.0" }
|
||||
deno_core = { path = "../core", version = "0.52.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.2.0" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
winres = "0.1"
|
||||
winapi = "0.3.8"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.51.0" }
|
||||
deno_core = { path = "../core", version = "0.52.0" }
|
||||
deno_lint = { version = "0.1.21", features = ["json"] }
|
||||
|
||||
atty = "0.2.14"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.51.0"
|
||||
version = "0.52.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_web"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
edition = "2018"
|
||||
description = "Collection of Web APIs"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.51.0", path = "../../core" }
|
||||
deno_core = { version = "0.52.0", path = "../../core" }
|
||||
|
||||
[dev-dependencies]
|
||||
futures = "0.3.5"
|
||||
|
@ -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.63.0";
|
||||
export const VERSION = "0.64.0";
|
||||
|
Loading…
Reference in New Issue
Block a user