Releases: javimosch/machin
Releases · javimosch/machin
Release list
MFL v0.107.0
What's Changed
- docs(#152): point LANGUAGE.md to the canonical
machin guidecatalog by @javimosch in #317 - fix(#153): sync README/SPEC command lists with
machin helpby @javimosch in #318 - fix(#154): add missing FFI/arena/counter/game_menu rows to examples/README.md by @javimosch in #319
- fix(#155): add docs/LANGUAGE.md and machin guide catalog to feature checklist by @javimosch in #320
- fix(#157): document the CC env var that overrides the C compiler by @javimosch in #322
- fix(#158): add missing gui/ section to examples/README.md by @javimosch in #323
- fix(#159): add extern/FFI keywords to machin guide catalog by @javimosch in #324
- fix(#161): describe MFL source as plain canonical text in changelog pages, not base64 by @javimosch in #325
- fix(#162): add landing page, changelog, and selfhost version to release checklist by @javimosch in #326
- fix(#163): add regex example and document silent-failure/literal-repl semantics by @javimosch in #327
- fix(#176): add runnable example for time_make/time_format/time_fields by @javimosch in #329
- fix(#95): document input() builtin in LANGUAGE.md Builtins table by @javimosch in #330
- fix(#99): drop stale "decoded form" wording from SPEC.md §14 title by @javimosch in #332
- fix(#104): clarify README's canonical-form snippet isn't a demo.mfl transcript by @javimosch in #333
- fix(#105): link tokmin.py and reliability harness from README/AGENTS by @javimosch in #334
- docs(#86): add CONTRIBUTING.md authoring guide, link from README by @javimosch in #336
- fix(#89): document logical operators (&&, ||, !) in LANGUAGE.md by @javimosch in #337
- fix(#305): FFI callbacks — pass a captureless MFL closure as a C fn pointer by @javimosch in #339
- fix(#156): document json_get in LANGUAGE.md and add a runnable example by @javimosch in #321
- fix(#171): document read_stdin() in LANGUAGE.md and add a runnable example by @javimosch in #328
- fix(#98): describe .mfl as canonical plain text in examples/README.md by @javimosch in #331
- fix(#70): document closures as capturing by reference, not by value by @javimosch in #340
- fix(#71): document scoped arenas and --safe in LANGUAGE.md by @javimosch in #341
- fix(#72): add missing grep/time/stdin_upper rows to examples/README.md by @javimosch in #342
- fix(#150): document break/continue and bare for{} loop in LANGUAGE.md by @javimosch in #343
- fix(#74): add arena production to SPEC.md grammar by @javimosch in #344
- fix(#75): update selfhost server info to v0.4.1 and current features by @javimosch in #345
- fix(#76): document nil as reserved but not implemented by @javimosch in #346
- fix(#77): correct docs claiming run.sh runs every example by @javimosch in #347
- fix(#78): add map, chan, func, and struct rows to LANGUAGE.md Types table by @javimosch in #348
- fix(#79): document var declaration form in LANGUAGE.md by @javimosch in #349
- fix(#80): bump landing page version badge and cover v0.4.0+ features by @javimosch in #350
- fix(#81): document the machin encode authoring workflow by @javimosch in #351
- fix(#83): add v0.4.0 and v0.4.1 entries to June 2026 changelog pages by @javimosch in #352
- fix(#84): document manual release binary download in README Install section by @javimosch in #353
- docs(#148): add file I/O, process, time, and WebSocket/TLS rows to LANGUAGE.md Builtins table by @javimosch in #354
- refactor(skillcmd): build embedded skills map once instead of per-call by @javimosch in #356
- docs(#148): document raw memory, TTY, dial/socket, and noise builtins by @javimosch in #357
- chore: gofmt cleanup for godoc comment style and struct alignment by @javimosch in #358
- chore(tighten_test): fix comment alignment via gofmt by @javimosch in #359
- test(convert): cover f64_bits/f64_from_bits sign bit and zero round trip by @javimosch in #360
- test: cover sin/pi/charat/bytes_index builtins by @javimosch in #361
- test: cover asin/cbrt/exp/log/fmod/to_lower builtins by @javimosch in #362
- fix: compile with -fno-strict-aliasing to stop silent peek/poke miscompiles by @javimosch in #363
- test(bytes_io): cover write_file_bytes/read_file_bytes NUL round-trip by @javimosch in #364
- test(netio): cover https_post/tls_read_bytes/tls_write_bytes/wss_send/wss_close codegen gating by @javimosch in #365
- test: cover substr/charat out-of-range and negative index clamping by @javimosch in #366
- test: cover index/has_prefix/has_suffix boundary cases by @javimosch in #367
- test: cover classifyParse/classifyCheck message-routing branches by @javimosch in #368
- test(racecheck): cover clonePath/pathEq/mapValType/copyIntMap helpers by @javimosch in #369
- test: cover byte_at/bytes_sub/bytes_index bounds clamping by @javimosch in #370
- test(transform): cover localNames/collectDeclared/freeIdents closure-lift helpers by @javimosch in #371
- test(build): cover gunzip round-trip and ccPath/zigPath env overrides by @javimosch in #372
- test(types): cover splitMapType and reconcile helpers by @javimosch in #373
- test(racecheck): cover placeOf and mergeGAcc helpers by @javimosch in #374
- test(main): cover raceGate clean/type-error/race-found paths by @javimosch in #375
- fix(codegen): give closure envs and captured-var boxes independent lifetimes by @javimosch in #376
- test(racecheck): cover typeShared heap-sharing cases by @javimosch in #377
- test(types): cover IsGlobal/GlobalKind/ParamKind/RetKindAt/ClosureInst by @javimosch in #378
- test(guide): cover renderGuideText and cmdGuide --skill/--text/--json by @javimosch in #379
- test(racecheck): cover collectLocals shadowing across all Stmt kinds by @javimosch in #380
- test(transform): cover liftClosures capture-by-reference lifting by @javimosch in #382
- test(main): cover cmdPack arg validation, encoding, and repack tolerance by @javimosch in #383
- test(parser): cover parseTypeName/parseTypeDecl/parseMake branches by @javimosch in #384
- test(parsetest): cover sexprExpr/sexprStmt/sexprFunc/sexprGlobal/sexprExtern by @javimosch in #385
- test(types): cover tryRange channel range arity check by @javimosch in #386
- test(uftest): cover cmdUFTest script ops, dumpUF, and boolToInt by @javimosch in #387
- test(main): cover cmdEncode missing-arg and composeSources file-error paths by @javimosch in #388
- test(framework): cover cmdFramework list/print/vendor command paths by @javimosch in #390
- test(main): cover cmdRun and cmdBuild error paths by @javimosch in #391
- test(testcmd): cover cmdTest no-files and JSON output paths by @javimosch in #392
- test(cmdrun): cover --safe flag code path by @javimosch in #394
- test(lexer): cover isDigit/isAlpha/isAlnum character class helpers by @javimosch in #395
- test(codegen): cover cZero for all Kind values including KChan/KMap/KVar/KNum/KVoid by @javimosch in #396
- test(parser): cover isExternDirective keyword checking by @javimosch in #397
- test(codegen): cover stringZeroInits for nested struct string field initialization by @javimosch in #398
...
MFL v0.106.0
What's Changed
- fix: parse() silently mangled \uXXXX JSON escapes instead of decoding them (#311) by @javimosch in #316
Full Changelog: v0.105.0...v0.106.0
MFL v0.105.0
What's Changed
- fix(selfhost): port the #310 go-arg use-after-free fix to cgen.src (#313) by @javimosch in #315
Full Changelog: v0.104.0...v0.105.0
MFL v0.104.0
What's Changed
- fix: use-after-free in
go f(args)when the spawning goroutine's arena frees early (#310) by @javimosch in #312
Full Changelog: v0.103.0...v0.104.0
MFL v0.103.0
What's Changed
- fix(#147): add C FFI / extern section to docs/LANGUAGE.md by @javimosch in #309
Full Changelog: v0.102.0...v0.103.0
MFL v0.102.0
What's Changed
- ci: add a workflow that actually runs the test suite (#85) by @javimosch in #307
Full Changelog: v0.101.0...v0.102.0
MFL v0.101.0
What's Changed
- test: cover the machin encode command path (#82) by @javimosch in #306
Full Changelog: v0.100.0...v0.101.0
MFL v0.100.0
What's Changed
- fix: json_echo_api.mfl silently truncated large/split POST bodies (#91) by @javimosch in #304
Full Changelog: v0.99.0...v0.100.0
MFL v0.99.0
What's Changed
- docs(#186): add bytes type and builtins to LANGUAGE.md + runnable example by @javimosch in #295
- docs(#187): add crypto (bytes) builtins to LANGUAGE.md + runnable example by @javimosch in #296
- feat: machin test [--json] <src...> — native MFL test runner (#236 Stage A) by @javimosch in #297
- docs(#181): add url_encode/url_decode to LANGUAGE.md + runnable example by @javimosch in #298
- fix(#182): add HTTP client builtin example and docs by @javimosch in #299
- fix(#168): add base64_encode/base64_decode to LANGUAGE.md + runnable example by @javimosch in #300
- fix(#169): add sha256/hmac_sha256 to LANGUAGE.md + runnable example by @javimosch in #301
- fix(#170): add sqlite_open/exec/query/close to LANGUAGE.md + list example by @javimosch in #302
- fix: reject duplicate function definitions (last-wins was silent) by @javimosch in #303
Full Changelog: v0.98.0...v0.99.0
MFL v0.98.0
What's Changed
- fix: read_file/read_file_bytes segfaulted on a directory path by @javimosch in #294
Full Changelog: v0.97.0...v0.98.0