Browse Source

symbol implementation and o.5.0

pull/212/head
Jason Williams 5 years ago
parent
commit
499f975a1a
  1. 4
      CHANGELOG.md
  2. 2
      Cargo.lock
  3. 2
      Cargo.toml

4
CHANGELOG.md

@ -8,7 +8,7 @@ Features:
Enables Boa to run within the Test 262 framework. Enables Boa to run within the Test 262 framework.
This will help us see what is implemented or not within the spec This will help us see what is implemented or not within the spec
# [Unreleased](https://github.com/jasonwilliams/boa/compare/v0.4.0...HEAD) # [# 0.5.0 (2019-11-06)](https://github.com/jasonwilliams/boa/compare/v0.4.0...HEAD)
Feature enhancements: Feature enhancements:
@ -52,6 +52,8 @@ Feature enhancements:
Number object and Constructore are implemented (including methods) (@pop) Number object and Constructore are implemented (including methods) (@pop)
- [FEATURE #194](https://github.com/jasonwilliams/boa/pull/194): - [FEATURE #194](https://github.com/jasonwilliams/boa/pull/194):
Array.prototype.map (@IovoslavIovchev) Array.prototype.map (@IovoslavIovchev)
- [FEATURE #90](https://github.com/jasonwilliams/boa/issues/90):
Symbol Implementation (@jasonwilliams)
Bug fixes: Bug fixes:

2
Cargo.lock generated

@ -2,7 +2,7 @@
# It is not intended for manual editing. # It is not intended for manual editing.
[[package]] [[package]]
name = "Boa" name = "Boa"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gc 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "gc 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",

2
Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "Boa" name = "Boa"
version = "0.4.0" version = "0.5.0"
authors = ["Jason Williams <jase.williams@gmail.com>"] authors = ["Jason Williams <jase.williams@gmail.com>"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
homepage = "https://github.com/jasonwilliams/boa" homepage = "https://github.com/jasonwilliams/boa"

Loading…
Cancel
Save