summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md9
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 20 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3ac8854c7..ccd17b202 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.0.0-rc3"
+version = "1.0.0"
dependencies = [
"atty",
"base64 0.12.0",
@@ -522,7 +522,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.44.0"
+version = "0.45.0"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -538,7 +538,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.44.0"
+version = "0.45.0"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 2dfc0760c..c7ecc891f 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,15 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.0.0 / 2020.05.13
+
+Read more about this release at https://deno.land/v1
+
+- fix: default to 0.0.0.0 for Deno.listen (#5203)
+- fix: Make --inspect-brk pause on the first line of _user_ code (#5250)
+- fix: Source maps in inspector for local files (#5245)
+- upgrade: TypeScript 3.9 (#4510)
+
### 1.0.0-rc3 / 2020.05.12
- BREAKING: Remove public Rust API for the "deno" crate (#5226)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 34ffc4b6d..38207c579 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.0.0-rc3"
+version = "1.0.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -15,12 +15,12 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.44.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.44.0" }
+deno_core = { path = "../core", version = "0.45.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.45.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.44.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.44.0" }
+deno_core = { path = "../core", version = "0.45.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.45.0" }
atty = "0.2.14"
base64 = "0.12.0"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 73ccd9207..84869645c 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.44.0"
+version = "0.45.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 c6c3ad5ff..1f9371725 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.44.0"
+version = "0.45.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_core = { path = "../core", version = "0.44.0" }
+deno_core = { path = "../core", version = "0.45.0" }
serde_json = "1.0.52"
serde = { version = "1.0.106", features = ["derive"] }