Mojo 1.0 ships — Modular's AI-native language goes stable

Share
Mojo 1.0 ships — Modular's AI-native language goes stable

Modular today released Mojo 1.0, the first stable version of Chris Lattner's AI-native programming language, three years after its debut. The release caps a roadmap laid out last December and turns a language long viewed as promising-but-moving into one the company says developers can build on for years.

Mojo 1.0 is here: Modular shipped the stable version of its AI-native language on August 11 as part of the Modular 26.5 release. Mojo was launched in 2023 by Lattner — creator of LLVM and Swift — to solve a specific pain: AI infrastructure code written in Python hits a performance ceiling that C++ and CUDA don't, but few AI developers want to drop down to CUDA. Mojo keeps Python-like syntax while compiling through MLIR to run on CPUs, Nvidia GPUs, AMD accelerators, and custom silicon, with Rust-inspired safety semantics like a borrow checker.

The 1.0 milestone is mostly a stability promise. Modular's stated goal is an "epoch of stability": projects built against 1.0 should not break as the language evolves, and future changes should be additive, managed the way mature languages like C++ handle evolution. The release finalizes a cleanup round — unified variable declarations, a single pointer type, unified closures — and adds Python-style lambda syntax, a far more reliable editor language server, and new compile-time diagnostics that catch memory-safety problems like a reference invalidated by a list append. It is not the end of evolution: async programming, pattern matching, and unions are slated for the 1.x series.

Why it matters: Mojo is no longer a research experiment. It is the foundation of Modular's commercial stack, MAX and Modular Cloud, which already serves frontier models like Gemma 4 and GLM-5.2 — and since the standard library went open source, nearly 200 contributors have landed more than 1,100 pull requests, changing over 200,000 lines of code. The open question is the compiler itself, which remains proprietary; Modular reiterated its commitment to open-sourcing the Mojo compiler and toolchain in 2026, and the community treats that as the real adoption trigger. Timing matters too: the release lands amid Qualcomm's planned acquisition of Modular, a deal Lattner says comes with a commitment to keeping the platform open to all hardware — which makes a language that targets any accelerator quietly strategic as a hedge against Nvidia lock-in.

What to watch: ModCon on August 18 in San Francisco, where Modular says it will open-source more components and announce support for hardware from new vendors.

Mojo's compiler is supposed to go open source this year — would you build production software on it before that happens? Tell us in the comments.

Sources: Modular · Mojo releases (mojolang.org) · Wikipedia) · Chris Lattner on LinkedIn