From 16f3a0bd294e9d2d3d2211035c54567b9d3aa211 Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Tue, 15 Mar 2022 16:50:02 +0000 Subject: [PATCH] give everything a version --- Cargo.lock | 2 +- boa_cli/Cargo.toml | 4 ++-- boa_examples/Cargo.toml | 6 +++--- boa_tester/Cargo.toml | 4 ++-- boa_wasm/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 229aa0b0c6..342da635e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,7 @@ dependencies = [ [[package]] name = "boa_examples" -version = "0.11.0" +version = "0.14.0" dependencies = [ "boa_engine", "boa_gc", diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index b1b2705947..a12a7ffaf8 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -30,8 +30,8 @@ exclude = [ ] [dependencies] -boa_engine = { path = "../boa_engine", features = ["deser", "console"] } -boa_interner = { path = "../boa_interner" } +boa_engine = { path = "../boa_engine", features = ["deser", "console"], version = "0.14.0" } +boa_interner = { path = "../boa_interner", version = "0.14.0" } rustyline = "9.1.2" rustyline-derive = "0.6.0" structopt = "0.3.26" diff --git a/boa_examples/Cargo.toml b/boa_examples/Cargo.toml index 97596905f3..09b77ae1a1 100644 --- a/boa_examples/Cargo.toml +++ b/boa_examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boa_examples" -version = "0.11.0" +version = "0.14.0" authors = ["boa-dev"] repository = "https://github.com/boa-dev/boa" license = "Unlicense/MIT" @@ -9,6 +9,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -boa_engine = { path = "../boa_engine", features = ["console"] } -boa_gc = { path = "../boa_gc" } +boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" } +boa_gc = { path = "../boa_gc", version = "0.14.0" } gc = { version = "0.4.1" } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 0b22c3f464..e535b7b5b1 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -29,8 +29,8 @@ exclude = [ ] [dependencies] -boa_engine = { path = "../boa_engine" } -boa_interner = { path = "../boa_interner" } +boa_engine = { path = "../boa_engine", version = "0.14.0" } +boa_interner = { path = "../boa_interner", version = "0.14.0" } structopt = "0.3.26" serde = { version = "1.0.136", features = ["derive"] } serde_yaml = "0.8.23" diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index ea6cf2f650..d7b2bf35dd 100644 --- a/boa_wasm/Cargo.toml +++ b/boa_wasm/Cargo.toml @@ -29,7 +29,7 @@ exclude = [ ] [dependencies] -boa_engine = { path = "../boa_engine", features = ["console"] } +boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" } wasm-bindgen = "=0.2.78" getrandom = { version = "0.2.5", features = ["js"] }