Skip to content

Commit c59fa32

Browse files
committed
doc: Update the CHANGELOG.
1 parent 5d1ecce commit c59fa32

File tree

1 file changed

+61
-1
lines changed

1 file changed

+61
-1
lines changed

CHANGELOG.md

+61-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,71 @@ All notable changes to this project will be documented in this file.
55
## Table of Contents
66

77
* [Unreleased](#unreleased)
8+
* [0.5.0](#050---2021-05-17)
89
* [0.4.0](#040---2020-02-03)
910
* [0.3.0](#030---2019-07-16)
1011
* [0.2.0](#020---2019-05-01)
1112

1213
## [Unreleased]
1314

15+
## [0.5.0] - 2021-05-17
16+
17+
This is a full rewrite of the entire project. This version is a
18+
candidate to become the 1.0 version.
19+
20+
We advise to take a look at:
21+
22+
* [the new documentation
23+
online](https://wasmerio.github.io/wasmer-ruby/wasmer_ruby/index.html),
24+
* [the collection of
25+
examples](https://github.com/wasmerio/wasmer-ruby/tree/master/examples).
26+
27+
Shortly, here are the new types the extension provides:
28+
29+
* `Store`, which holds the engine, the compiler etc.
30+
* `Module`, which represents a Wasm module, with `validate`, `new`,
31+
`name=`, `name`, `exports`, `imports`, `custom_sections`,
32+
`serialize` and `deserialize`,
33+
* `Instance`, which represents a Wasm instance, with `new` and
34+
`exports`,
35+
* `Exports`, which represents a collection of exported entities, with
36+
`respond_to_missing?`, `method_missing`, and `length`,
37+
* `ImportObject`, which represents a collection of imports that will
38+
be passed to `Instance`, with `new`, `contains_namespace`, and
39+
`register`,
40+
* `Function`, which represents an imported or exported function, with
41+
`new`, `call` and `type`,
42+
* `Memory`, which represents an imported or exported memory, with
43+
`new`, `type`, `size`, `data_size`, `grow`, + memory views that
44+
extends `Enumerable`,
45+
* `Global`, which represents an imported or exported global, with
46+
`new`, `mutable?`, `value`, `value=`, and `type`,
47+
* `Table`, which represents an imported or exported table, with `new`
48+
(small API for the moment),
49+
* `Type`, `FunctionType`, `MemoryType`, `GlobalType` and `TableType`,
50+
* `ExportType` and `ImportType`,
51+
* `Value` which represents a Wasm value,
52+
* `Wasi` module, which provides the `Version`, `StateBuilder` and
53+
`Environment` classes.
54+
55+
## Added
56+
57+
* Online documentation, with tested examples
58+
([#51](https://github.com/wasmerio/wasmer-ruby/pull/51) by [@Hywan])
59+
* Tests run against Ruby 2.7 + 3.0, and against Linux + macOS
60+
([#49](https://github.com/wasmerio/wasmer-ruby/pull/49) by [@Hywan])
61+
62+
## Changed
63+
64+
As we said, the extension has been fully rewritten, and the code is
65+
likely to not be compatible anymore. Here are the most notable
66+
patches:
67+
68+
* The big rewrite
69+
([#48](https://github.com/wasmerio/wasmer-ruby/pull/48) by [@Hywan])
70+
* Remove Ruby dependency to `rutie`
71+
([#52](https://github.com/wasmerio/wasmer-ruby/pull/52) by [@Hywan])
72+
1473
## [0.4.0] - 2020-02-03
1574

1675
### Added
@@ -137,7 +196,8 @@ All notable changes to this project will be documented in this file.
137196

138197
## [0.2.0] - 2019-05-01
139198

140-
[Unreleased]: https://github.com/wasmerio/wasmer-ruby/compare/0.4.0...HEAD
199+
[Unreleased]: https://github.com/wasmerio/wasmer-ruby/compare/0.5.0...HEAD
200+
[0.5.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.4.0...0.5.0
141201
[0.4.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.3.0...0.4.0
142202
[0.3.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.2.0...0.3.0
143203
[0.2.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.1.0...0.2.0

0 commit comments

Comments
 (0)