Skip to content

Commit

Permalink
[Doc] Update README and Changelog for 0.7.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
q82419 authored and hydai committed Nov 6, 2020
1 parent ac46b72 commit e5c4103
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
### 0.7.1 (2020-11-06)

Features:

* Applied the [reference types and bulk memory operations](https://webassembly.github.io/reference-types/core/) proposal for AOT.
* Support LLVM 11.

Refactor:

* Refactor symbols in AOT.
* Removed the symbols in instances.
* Added instrinsics table for dynamic linking when running a compiled wasm.
* Merged the program counter into `stack manager`.
* Added back the `OpCode::End` instruction.
* Refactored the validator workflow of checking expressions.
* Used `std::bitset` for VM configuration.
* Used `std::array` for cost table storage.
* Conbined `include/support` into `include/common`.
* Merged `support/castng.h` into `common/types.h`.
* Merged `Measurement` into `Statistics`.
* Renamed `support/time.h` into `common/timer.h`. Used standard steady clock instead.
* Renamed `common/ast.h` into `common/astdef.h`.
* Moved `common/ast/` to `ast/`.
* Removed the `SSVM::Support` namespace.

Tests:

* Applied new test suite of the reference types and bulk memory operation proposal for AOT.


### 0.7.0 (2020-10-16)

Features:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
```bash
$ git clone git@github.com:second-state/SSVM.git
$ cd SSVM
$ git checkout 0.7.0
$ git checkout 0.7.1
```

## Prepare the environment
Expand Down

0 comments on commit e5c4103

Please sign in to comment.