Skip to content

Commit

Permalink
v0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Apr 16, 2020
1 parent 0c48470 commit 00fa485
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Releases.md
Expand Up @@ -6,6 +6,39 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install

### v0.41.0 / 2020.04.16

- BREAKING: Improve readdir() and FileInfo interfaces (#4763)
- BREAKING: Remove depracated APIs for mkdir and mkdirSync (#4615)
- BREAKING: Make fetch API more web compatible (#4687)
- BREAKING: Remove std/testing/format.ts (#4749)
- BREAKING: Migrate std/types to deno.land/x/types/ (#4713, #4771)
- feat(doc): support for runtime built-ins (#4635)
- feat(std/log): rotating handler, docs improvements (#4674)
- feat(std/node): Add isPrimitive method (#4673)
- feat(std/node/fs): Add copyFile and copyFileSync methods (#4726)
- feat(std/signal): Add onSignal method (#4696)
- feat(std/testing): Change output of diff (#4697)
- feat(std/http): Verify cookie name (#4685)
- feat(std/multipart): Make readForm() type safe (#4710)
- feat(std/uuid): Add UUID v1 (#4758)
- feat(install): Honor log level arg (#4714)
- feat(workers): Make Worker API more web compatible (#4684, #4734, #4391,
#4737, #4746)
- feat: Add AbortController and AbortSignal API (#4757)
- fix(install): Clean up output on Windows (#4764)
- fix(core): Handle SyntaxError during script compilation (#4770)
- fix(cli): Async stack traces and stack formatting (#4690, #4706, #4715)
- fix(cli): Remove unnecessary namespaces in "deno types" (#4683, #4698, #4718,
#4719, #4736, #4741)
- fix(cli): Panic on invalid UTF-8 string (#4704)
- fix(cli/js/net): Make generator return types iterable (#4661)
- fix(doc): Handle optional and extends fields (#4738, #4739)
- refactor: Event and EventTarget implementation (#4707)
- refactor: Use synchronous syscalls where applicable (#4762)
- refactor: Remove calls to futures::executor::block_on (#4760, #4775)
- upgrade: Rust crates (#4742)

### v0.40.0 / 2020.04.08

- BREAKING: Rename 'deno fetch' subcommand to 'deno cache' (#4656)
Expand Down
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "0.40.0"
version = "0.41.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,12 +19,12 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.40.0" }
deno_typescript = { path = "../deno_typescript", version = "0.40.0" }
deno_core = { path = "../core", version = "0.41.0" }
deno_typescript = { path = "../deno_typescript", version = "0.41.0" }

[dependencies]
deno_core = { path = "../core", version = "0.40.0" }
deno_typescript = { path = "../deno_typescript", version = "0.40.0" }
deno_core = { path = "../core", version = "0.41.0" }
deno_typescript = { path = "../deno_typescript", version = "0.41.0" }

atty = "0.2.14"
base64 = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.40.0"
version = "0.41.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 deletions deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.40.0"
version = "0.41.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
Expand All @@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"

[dependencies]
deno_core = { path = "../core", version = "0.40.0" }
deno_core = { path = "../core", version = "0.41.0" }
serde_json = "1.0.51"
serde = { version = "1.0.106", features = ["derive"] }

0 comments on commit 00fa485

Please sign in to comment.