summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-11-26 08:22:18 -0800
committerRy Dahl <ry@tinyclouds.org>2019-11-26 10:01:59 -0800
commit2cd22b5437a375f0e33f26327101afb818a03802 (patch)
tree0208cd6a912e1a183c1e4c57b690b44d0598d19a
parent9712e0c31582b5052e7e647f694af1f7bccad0b9 (diff)
v0.25.0
-rw-r--r--Cargo.lock12
-rw-r--r--Releases.md24
-rw-r--r--cli/Cargo.toml8
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 37 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 16f6caad6..9624ea88a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -269,7 +269,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.24.0"
+version = "0.25.0"
dependencies = [
"downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -283,15 +283,15 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.24.0"
+version = "0.25.0"
dependencies = [
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "deno 0.24.0",
- "deno_typescript 0.24.0",
+ "deno 0.25.0",
+ "deno_typescript 0.25.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -330,9 +330,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.24.0"
+version = "0.25.0"
dependencies = [
- "deno 0.24.0",
+ "deno 0.25.0",
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index b14c852e8..bad5795a9 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.25.0 / 2019.11.26
+
+- feat: Support named exports on bundles (#3352)
+- feat: Add --check for deno fmt (#3369)
+- feat: Add Deno.realpath (#3404)
+- feat: Add ignore parser for std/prettier (#3399)
+- feat: Add std/encoding/yaml module (#3361)
+- feat: Add std/node polyfill for require() (#3382, #3380)
+- feat: Add std/node/process (#3368)
+- feat: Allow op registration during calls in core (#3375)
+- feat: Better error message for missing module (#3402)
+- feat: Support load yaml/yml prettier config (#3370)
+- fix: Make private namespaces in lib.deno_runtime.d.ts more private (#3400)
+- fix: Remote .wasm import content type issue (#3351)
+- fix: Run std tests with cargo test (#3344)
+- fix: deno fmt should respect prettierrc and prettierignore (#3346)
+- fix: std/datetime toIMF bug (#3357)
+- fix: better error for 'relative import path not prefixed with...' (#3405)
+- refactor: Elevate DenoPermissions lock to top level (#3398)
+- refactor: Reorganize flags, removes ability to specify run arguments like
+ `--allow-net` after the script (#3389)
+- refactor: Use futures 0.3 API (#3358, #3359, #3363, #3388, #3381)
+- chore: Remove unneeded tokio deps (#3376)
+
### v0.24.0 / 2019.11.14
- feat: Add Node compat module std/node (#3319)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index c3fdf66b9..4645f2445 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cli"
-version = "0.24.0"
+version = "0.25.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -19,11 +19,11 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_typescript = { path = "../deno_typescript", version = "0.24.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.25.0" }
[dependencies]
-deno = { path = "../core", version = "0.24.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.24.0" }
+deno = { path = "../core", version = "0.25.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.25.0" }
ansi_term = "0.12.1"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index ee15308ba..cea3992c9 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.24.0"
+version = "0.25.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index ebf0ab2bc..d2374f473 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.24.0"
+version = "0.25.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
@@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"
[dependencies]
-deno = { path = "../core", version = "0.24.0" }
+deno = { path = "../core", version = "0.25.0" }
serde_json = "1.0.41"
serde = { version = "1.0.102", features = ["derive"] }