mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.3.3
This commit is contained in:
parent
e7147786f4
commit
a14b3c9e30
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -387,7 +387,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.3.2"
|
||||
version = "1.3.3"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -449,7 +449,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.55.0"
|
||||
version = "0.56.0"
|
||||
dependencies = [
|
||||
"downcast-rs",
|
||||
"futures",
|
||||
@ -498,7 +498,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
23
Releases.md
23
Releases.md
@ -6,6 +6,29 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.3.3 / 2020.09.04
|
||||
|
||||
- feat(unstable): Add Deno.futime and Deno.futimeSync (#7266)
|
||||
- feat(unstable): Allow deno lint to read from stdin (#7263)
|
||||
- fix: Don't expose globalThis.__bootstrap (#7344)
|
||||
- fix: Handle bad redirects more gracefully (#7342)
|
||||
- fix: Handling of + character in URLSearchParams (#7314)
|
||||
- fix: Regex for TS refereces and deno-types (#7333)
|
||||
- fix: Set maximum size of thread pool to 31 (#7290)
|
||||
- fix: Support missing features in --no-check (#7289)
|
||||
- fix: Use millisecond precision for Deno.futime and Deno.utime (#7299)
|
||||
- fix: Use upstream type definitions for WebAssembly (#7216)
|
||||
- refactor: Compiler config in Rust (#7228)
|
||||
- refactor: Support env_logger / RUST_LOG (#7142)
|
||||
- refactor: Support multiline diagnostics in linter (#7303)
|
||||
- refactor: Use dependency analyzer from SWC (#7334)
|
||||
- upgrade: rust 1.46.0 (#7251)
|
||||
- upgrade: swc, deno_doc, deno_lint, dprint (#7276, #7332)
|
||||
|
||||
Changes in std version 0.68.0:
|
||||
|
||||
- refactor(std/uuid): remove dependency on isString from std/node (#7273)
|
||||
|
||||
### 1.3.2 / 2020.08.29
|
||||
|
||||
- fix(cli): revert "never type check deno info #6978" (#7199)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.3.2"
|
||||
version = "1.3.3"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -20,15 +20,15 @@ harness = false
|
||||
path = "./bench/main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.55.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.6.0" }
|
||||
deno_core = { path = "../core", version = "0.56.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.7.0" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.55.0" }
|
||||
deno_core = { path = "../core", version = "0.56.0" }
|
||||
deno_doc = { version = "0.1.4" }
|
||||
deno_lint = { version = "0.1.28", features = ["json"] }
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.55.0"
|
||||
version = "0.56.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.6.0"
|
||||
version = "0.7.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.55.0", path = "../../core" }
|
||||
deno_core = { version = "0.56.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.67.0";
|
||||
export const VERSION = "0.68.0";
|
||||
|
Loading…
Reference in New Issue
Block a user