Release Notes

Documentation-facing release notes for public Alef users. Compiler and runtime

source stay private; this site is the public contract for learning and APIs.

2026-07-18 โ€” AlefDocs + native maturity snapshot

Public docs project

github.com/mturac/alefdocs

Runtime and stdlib (native alef run)

User-visible capability clusters closed and documented for the native path:

Blake2, ECDSA, X.509-related helpers

semaphores, when_all / when_any

multi-writer, tee, seek

related encoding work

optional SQLite persistence hooks

native services

Install

On macOS, after installing a release binary:


codesign --force -s - ./alef
alef --version

Maturity note

Alef remains AI-native and native-first. It does not claim full Go or .NET

stdlib replacement. Prefer documented modules and tutorials over assuming

unlisted package parity.


Native-first Docs

Public examples target:


alef run main.alef

HTTP Client Result Behavior

Native HTTP client calls return Result<HttpResponse, string>:


match std.http.get("https://example.com") {
    Ok(r) => println(r.body),
    Err(e) => println("request failed: {e}"),
}

Bytecode Strict Mode

Use strict bytecode checks when validating bytecode support:


alef --strict-bytecode run main.alef