mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.8.1
This commit is contained in:
parent
ff96c95bbb
commit
8d3baa7777
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -494,7 +494,7 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.8.0"
|
||||
version = "1.8.1"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.13.0",
|
||||
|
15
Releases.md
15
Releases.md
@ -6,6 +6,21 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at:
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.8.1 / 2021.03.09
|
||||
|
||||
- fix(cli/ast): Pass importsNotUsedAsValues to swc (#9714)
|
||||
- fix(cli/compile): Do not append .exe depending on target (#9668)
|
||||
- fix(cli/coverage): Ensure single line functions don't yield false positives
|
||||
(#9717)
|
||||
- fix(core): Shared queue assertion failure in case of js error (#9721)
|
||||
- fix(runtime): Add navigator interface objects (#9685)
|
||||
- fix(runtime/web_worker): Don't block self.onmessage with TLA (#9619)
|
||||
- fix(webgpu): Add Uint32Array type for code in ShaderModuleDescriptor (#9730)
|
||||
- fix(webgpu): Add webidl records and simple unions (#9698)
|
||||
|
||||
Release notes for std version 0.90.0:
|
||||
https://github.com/denoland/deno_std/releases/tag/0.90.0
|
||||
|
||||
### 1.8.0 / 2021.03.02
|
||||
|
||||
https://deno.land/posts/v1.8
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.8.0"
|
||||
version = "1.8.1"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
|
@ -5254,6 +5254,7 @@ console.log("finish");
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
#[cfg(windows)]
|
||||
// https://github.com/denoland/deno/issues/9667
|
||||
fn compile_windows_ext() {
|
||||
|
Loading…
Reference in New Issue
Block a user