-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
roadmap.html
68 lines (56 loc) · 1.54 KB
/
roadmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: Gleam's Development Roadmap
subtitle: What's coming next?
layout: page
class: "roadmap"
---
<p>
The highlights of what's been released, what's being worked on, and what's
coming in future! To see all the details please see the
<a href="https://github.com/gleam-lang/gleam/tree/main/CHANGELOG.md"
>current changelogs</a
>, the
<a href="https://github.com/gleam-lang/gleam/tree/main/changelog"
>historical changelogs</a
>, and the
<a href="https://github.com/gleam-lang/gleam/issues">issue tracker</a>
</p>
<h2>In progress</h2>
<p>
Features that are currently being worked on, or complete but not yet released.
</p>
<ul class="roadmap-list">
{% for item in site.data.roadmap.in-progress %}
<li>{{ item }}</li>
{% endfor %}
</ul>
<h2>Planned</h2>
<p>Features that will be implemented, but work has not yet started.</p>
<ul class="roadmap-list">
{% for item in site.data.roadmap.planned %}
<li>{{ item }}</li>
{% endfor %}
</ul>
<h2>Research</h2>
<p>
Features that likely will be added in future, but we have some outstanding
design questions to resolve.
</p>
<ul class="roadmap-list">
{% for item in site.data.roadmap.research %}
<li>{{ item }}</li>
{% endfor %}
</ul>
<h2>Done</h2>
<ol class="roadmap-release-list">
{% for release in site.data.roadmap.done %}
<li>
<h3>{{ release.version }} - {{ release.date | date: "%d %b, %Y" }}</h3>
<ul class="roadmap-list">
{% for item in release.items %}
<li>{{ item | markdownify }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ol>