Skip to content

Commit 141639a

Browse files
authored
Bump version to v0.3 (#280)
1 parent 9f9e3c6 commit 141639a

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
0.3.0 (2021-03-31)
2+
===
3+
4+
GC Plans
5+
---
6+
* Added a marksweep implementation.
7+
* GC plans are now selected at run-time.
8+
9+
Allocators
10+
---
11+
* Added MallocAllocator that can be used as a freelist allocator.
12+
* Added a few implementations of malloc/free that can be chosen as build-time features.
13+
14+
Policies
15+
---
16+
* Added MallocSpace.
17+
18+
API
19+
---
20+
* Added support for finalization.
21+
* HAS_GC_BYTE in the ObjectModel trait is superseded by a feature 'side_gc_byte`.
22+
23+
Misc
24+
---
25+
* Added a general side metadata implementation.
26+
* Added a framework for collecting analysis data.
27+
* Added a framework that allows triggering analysis or sanity GC at byte-granularity.
28+
* Added a tutorial for GC implementors.
29+
* Added a porting guide for MMTk users (language implementors).
30+
* GC workers now cache work locally.
31+
* Fixed concurrency bugs in stack scanning and pointer forwarding.
32+
33+
134
0.2.0 (2020-12-18)
235
===
336

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["The MMTk Developers <>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)