Browse Source

Bump version to 0.12.0

v0.12
jedel1043 3 years ago
parent
commit
1c67beebb6
  1. 10
      Cargo.lock
  2. 4
      boa/Cargo.toml
  3. 2
      boa_tester/Cargo.toml
  4. 2
      boa_unicode/Cargo.toml
  5. 2
      boa_wasm/Cargo.toml

10
Cargo.lock generated

@ -1,8 +1,10 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "Boa"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bitflags",
"boa_unicode",
@ -93,7 +95,7 @@ dependencies = [
[[package]]
name = "boa_tester"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"Boa",
"bitflags",
@ -113,14 +115,14 @@ dependencies = [
[[package]]
name = "boa_unicode"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"unicode-general-category",
]
[[package]]
name = "boa_wasm"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"Boa",
"getrandom",

4
boa/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "Boa"
version = "0.11.0"
version = "0.12.0"
authors = ["boa-dev"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
repository = "https://github.com/boa-dev/boa"
@ -21,7 +21,7 @@ vm = []
console = []
[dependencies]
boa_unicode = { path = "../boa_unicode", version = "0.11.0" }
boa_unicode = { path = "../boa_unicode", version = "0.12.0" }
gc = { version = "0.4.1", features = ["derive"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"

2
boa_tester/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "boa_tester"
version = "0.11.0"
version = "0.12.0"
authors = ["boa-dev"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
repository = "https://github.com/boa-dev/boa"

2
boa_unicode/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "boa_unicode"
version = "0.11.0"
version = "0.12.0"
authors = ["boa-dev"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
repository = "https://github.com/boa-dev/boa"

2
boa_wasm/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "boa_wasm"
version = "0.11.0"
version = "0.12.0"
authors = ["boa-dev"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
repository = "https://github.com/boa-dev/boa"

Loading…
Cancel
Save