Skip to content

Commit

Permalink
v0.30.1
Browse files Browse the repository at this point in the history
This patch release is being done only to test crate publishing, hence
lack of release notes or published binaries.
  • Loading branch information
ry committed Jan 21, 2020
1 parent 9de8178 commit 7fd5006
Show file tree
Hide file tree
Showing 4 changed files with 16 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.

8 changes: 4 additions & 4 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.30.0"
version = "0.30.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,11 +19,11 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_typescript = { path = "../deno_typescript", version = "0.30.0" }
deno_typescript = { path = "../deno_typescript", version = "0.30.1" }

[dependencies]
deno_core = { path = "../core", version = "0.30.0" }
deno_typescript = { path = "../deno_typescript", version = "0.30.0" }
deno_core = { path = "../core", version = "0.30.1" }
deno_typescript = { path = "../deno_typescript", version = "0.30.1" }

ansi_term = "0.11.0"
atty = "0.2.13"
Expand Down
4 changes: 2 additions & 2 deletions 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.30.0"
version = "0.30.1"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand All @@ -21,7 +21,7 @@ libc = "0.2.66"
log = "0.4.8"
serde_json = "1.0.44"
url = "2.1.0"
rusty_v8 = "0.1.0"
rusty_v8 = "=0.1.0"

[[example]]
name = "deno_core_http_bench"
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.30.0"
version = "0.30.1"
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.30.0" }
deno_core = { path = "../core", version = "0.30.1" }
serde_json = "1.0.44"
serde = { version = "1.0.104", features = ["derive"] }

0 comments on commit 7fd5006

Please sign in to comment.