Browse Source

updating version

pull/41/head
Jason Williams 5 years ago
parent
commit
c8d1f93dc6
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 8
      README.md

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.2.0" version = "0.2.1"
dependencies = [ dependencies = [
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (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.2.0" version = "0.2.1"
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"

8
README.md

@ -38,13 +38,7 @@ In the console you can use `window.evaluate` to pass JavaScript in
#### Roadmap #### Roadmap
- ~string.length~ - works in 0.1.5 See Project view
- Better lexing of numbers
- Adding support for constructors - half working, in progress
- ~better environment and scope support~ - Finished (05/05/2019)
- ~`let` and `const` support~
- Better error output
- Passing [test262](https://github.com/tc39/test262)
#### Usage #### Usage

Loading…
Cancel
Save