Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.0 #5273

Merged
merged 1 commit into from
May 13, 2020
Merged

v1.0.0 #5273

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

9 changes: 9 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

ry marked this conversation as resolved.
Show resolved Hide resolved
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)
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 = "1.0.0-rc3"
version = "1.0.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -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"
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.44.0"
version = "0.45.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.44.0"
version = "0.45.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.44.0" }
deno_core = { path = "../core", version = "0.45.0" }
serde_json = "1.0.52"
serde = { version = "1.0.106", features = ["derive"] }