From 499f975a1aa36bd8a3014d8de66d217a3a0d1d2c Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Wed, 6 Nov 2019 16:29:36 +0000 Subject: [PATCH] symbol implementation and o.5.0 --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 727f9ca0e1..968ca76b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Features: Enables Boa to run within the Test 262 framework. 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: @@ -52,6 +52,8 @@ Feature enhancements: Number object and Constructore are implemented (including methods) (@pop) - [FEATURE #194](https://github.com/jasonwilliams/boa/pull/194): Array.prototype.map (@IovoslavIovchev) +- [FEATURE #90](https://github.com/jasonwilliams/boa/issues/90): + Symbol Implementation (@jasonwilliams) Bug fixes: diff --git a/Cargo.lock b/Cargo.lock index 044707b63d..0eb2e7d7e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "Boa" -version = "0.4.0" +version = "0.5.0" dependencies = [ "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)", diff --git a/Cargo.toml b/Cargo.toml index eab8fbc570..352ea095af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "Boa" -version = "0.4.0" +version = "0.5.0" authors = ["Jason Williams "] 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"