Skip to content

Commit 2149bdc

Browse files
committed
v0.8.0
1 parent 5cfe529 commit 2149bdc

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
# [# 0.8.0 (2020-05-22) - BigInt, Modularized Parser, Faster Hashing](https://github.com/jasonwilliams/boa/compare/v0.7.0...HEAD)
44

5+
`v0.7.0` brings more language implementations, such as do..while, function objects and also more recent EcmaScript additions, like BigInt.
6+
We have now moved the Web Assembly build into the `wasm` package, plus added a code of conduct for those contributing.
7+
8+
The parser has been even more modularized in this release making it easier to add new parsing rules.
9+
10+
Boa has migrated it's object implemention to FXHash which brings much improved results over the built-in Rust hashmaps (at the cost of less DOS Protection).
11+
512
Feature Enhancements:
613

714
- [FEATURE #121](https://github.com/jasonwilliams/boa/issues/121):

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

boa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "Boa"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Jason Williams <[email protected]>"]
55
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
66
repository = "https://github.com/jasonwilliams/boa"

boa_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boa_cli"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["razican <[email protected]>"]
55
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
66
repository = "https://github.com/jasonwilliams/boa"

boa_wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boa_wasm"
3-
version = "0.1.0"
3+
version = "0.8.0"
44
authors = ["Jason Williams <[email protected]>"]
55
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
66
repository = "https://github.com/jasonwilliams/boa"

0 commit comments

Comments
 (0)