Skip to content

Commit

Permalink
v0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Feb 3, 2020
1 parent 2b0cf74 commit f4cc08c
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 16 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

31 changes: 31 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install

### v0.32.0 / 2020.02.03

- BREAKING CHANGE: Replace formatter for "deno fmt", use dprint (#3820, #3824,
#3842)
- BREAKING CHANGE: Remove std/prettier (#3820)
- BREAKING CHANGE: Remove std/installer (#3843)
- BREAKING CHANGE: Remove --current-thread flag (#3830)
- BREAKING CHANGE: Deno.makeTempDir() checks permissions (#3810)
- feat: deno install in Rust (#3806)
- feat: Improve support of type definitions (#3755)
- feat: deno fetch supports --lock-write (#3787)
- feat: deno eval supports --v8-flags=... (#3797)
- feat: descriptive permission errors (#3808)
- feat: Make fetch API more standards compliant (#3667)
- feat: deno fetch supports multiple files (#3845)
- feat(std/node): Endianness (#3833)
- feat(std/node): Partial os polyfill (#3821)
- feat(std/examples): Bring back xeval (#3822)
- feat(std/encoding): Add base32 support (#3855)
- feat(deno_typescript): Support crate imports (#3814)
- fix: Panic on cache miss (#3784)
- fix: Deno.remove() to properly remove dangling symlinks (#3860)
- refactor: Use tokio::main attribute in lib.rs (#3831)
- refactor: Provide TS libraries for window and worker scope (#3771, #3812,
#3728)
- refactor(deno_core): Error tracking and scope passing (#3783)
- refactor(deno_core): Rename PinnedBuf to ZeroCopyBuf (#3782)
- refactor(deno_core): Change Loader trait (#3791)
- upgrade: Rust 1.41.0 (#3838)
- upgrade: Rust crates (#3829)

### v0.31.0 / 2020.01.24

- BREAKING CHANGE: remove support for blob: URL in Worker (#3722)
Expand Down
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "0.31.0"
version = "0.32.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.31.0" }
deno_typescript = { path = "../deno_typescript", version = "0.31.0" }
deno_core = { path = "../core", version = "0.32.0" }
deno_typescript = { path = "../deno_typescript", version = "0.32.0" }

[dependencies]
deno_core = { path = "../core", version = "0.31.0" }
deno_typescript = { path = "../deno_typescript", version = "0.31.0" }
deno_core = { path = "../core", version = "0.32.0" }
deno_typescript = { path = "../deno_typescript", version = "0.32.0" }

ansi_term = "0.11.0"
atty = "0.2.13"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.31.0"
version = "0.32.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.31.0"
version = "0.32.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.31.0" }
deno_core = { path = "../core", version = "0.32.0" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }

0 comments on commit f4cc08c

Please sign in to comment.