| Age | Commit message (Expand) | Author |
| 2024-09-03 | Support literal Text("blah") for text that is constant ASCII strings | Bruce Hill |
| 2024-09-02 | Bugfix some text replacement things | Bruce Hill |
| 2024-09-02 | Initial WIP first past | Bruce Hill |
| 2024-08-23 | Bugfix for parsing ints | Bruce Hill |
| 2024-08-22 | Overhaul of import syntax. Now everything uses `use`: `use foo`, `use | Bruce Hill |
| 2024-08-21 | Variables can no longer hold function pointers, only closure_t's. This | Bruce Hill |
| 2024-08-20 | Bugfix some copy-on-write cases for when pointers are automatically | Bruce Hill |
| 2024-08-19 | Remove TODO | Bruce Hill |
| 2024-08-19 | Add .text_content as a field on DSLs instead of a method | Bruce Hill |
| 2024-08-19 | Bugfix :text_content() for DSLs | Bruce Hill |
| 2024-08-18 | Add Channel:peek() | Bruce Hill |
| 2024-08-18 | Rename push/pop to give/get, since it's not stack-ordered | Bruce Hill |
| 2024-08-18 | Add array:first(predicate:func(x:&T)->Bool)->@%T? | Bruce Hill |
| 2024-08-18 | Deprecate `#` operator in favor of .length and fix up some issues | Bruce Hill |
| 2024-08-18 | Improved syntax for dollar-string literals | Bruce Hill |
| 2024-08-18 | Fix up some bigint logic issues | Bruce Hill |
| 2024-08-18 | Split BigIntType out of IntType and switch to using enums for the size | Bruce Hill |
| 2024-08-17 | Add table:get_or_null(key) for tables with non-null pointer values, | Bruce Hill |
| 2024-08-16 | Check for compile-time constant integers that require heap allocations. | Bruce Hill |
| 2024-08-15 | More helpful error message for table indexing | Bruce Hill |
| 2024-08-15 | Add array:find() | Bruce Hill |
| 2024-08-15 | Add method for array:remove_item(item) and rename | Bruce Hill |
| 2024-08-15 | Add array:shuffled() and checks for array insertion | Bruce Hill |
| 2024-08-15 | Add binary search method to arrays | Bruce Hill |
| 2024-08-13 | Support ^ exponentiation for integers | Bruce Hill |
| 2024-08-13 | Partially working first draft of bigints | Bruce Hill |
| 2024-08-12 | Bugfix some issues with table keys/values | Bruce Hill |
| 2024-08-11 | Add channels and threads | Bruce Hill |
| 2024-08-10 | Overhaul of operator metamethods | Bruce Hill |
| 2024-08-10 | Add array:counts() | Bruce Hill |
| 2024-08-10 | Add Array:unique() to get a set of unique items | Bruce Hill |
| 2024-08-10 | For tables, deprecate support for square bracket indexing and .default | Bruce Hill |
| 2024-08-10 | Add Sets to the language | Bruce Hill |
| 2024-08-04 | Tweaks to array implementation, including changing how the bits are | Bruce Hill |
| 2024-08-04 | Switch around some of the logic for array:random() and array:shuffle() | Bruce Hill |
| 2024-08-03 | Revert "Fix array:random() to return a random item using correct RNG logic," | Bruce Hill |
| 2024-08-03 | Make default table removal behavior deterministic, but have caches | Bruce Hill |
| 2024-08-03 | Fix array:random() to return a random item using correct RNG logic, | Bruce Hill |
| 2024-07-26 | Replace heap_str with GC_strdup | Bruce Hill |
| 2024-07-26 | Replace heap_strn() with GC_strndup() | Bruce Hill |
| 2024-07-20 | Deprecate array:pairs() and switch iterator functions to use enums | Bruce Hill |
| 2024-07-19 | Fix for unqualified enum names as return values | Bruce Hill |
| 2024-07-13 | Fix for reductions over iterators like `(+) range(5, 10)` | Bruce Hill |
| 2024-07-13 | Add ReturnType(ret) so we can more accurately track return values for | Bruce Hill |
| 2024-07-13 | Allow lambdas to have a return statement as the last statement | Bruce Hill |
| 2024-07-13 | Add array:pairs() | Bruce Hill |
| 2024-07-13 | Add iterator functions | Bruce Hill |
| 2024-07-10 | Add array:to() to split out functionality of array:from() | Bruce Hill |
| 2024-07-10 | Replace array:slice() with array:from(first, last) and array:by(step) | Bruce Hill |
| 2024-07-05 | Cache AST parsings so we don't have to re-parse files | Bruce Hill |