Skip to content

Commit 31a0ee8

Browse files
committed
Preparing to release 0.2.0
1 parent b93fbfb commit 31a0ee8

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

docs/EXTENDING_LOX.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
These are the documented changes to the language/syntax from the original Lox language.
44

5-
## Next: 0.2.0
5+
## Next: 0.3.0
6+
7+
- Native Functions
8+
- [ ] `arrSort(array, fn)`
9+
- [ ] `arrMap(array, fn)`
10+
- [ ] `arrJoinToString(array, separator)`
11+
12+
## 0.2.0
613

714
- Modulo operator: `%`
815
- New token: `TOKEN_MODULO`
@@ -31,9 +38,6 @@ These are the documented changes to the language/syntax from the original Lox la
3138
- `arrSlice(array, start, end)`
3239
- `arrConcat(a, b)`
3340
- `arrReverse(array)`
34-
- [ ] `arrSort(array, fn)`
35-
- [ ] `arrMap(array, fn)`
36-
- [ ] `arrJoinToString(array, separator)`
3741
- Update `len` native function to return array lengths as well
3842

3943
## 0.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.2.0

unit/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
#include "../src/version.h"
55

66
int main(void) {
7-
assert(strcmp(CLOX_VERSION, "0.1.0") == 0);
7+
assert(strcmp(CLOX_VERSION, "0.2.0") == 0);
88
return 0;
99
}

0 commit comments

Comments
 (0)