Menu

Guidefor modders4 min read

NeoForge version numbers: which build for 26.2 or 1.21

NeoForge moved to four part version numbers in the calendar era. How 26.2.0.35-beta maps to Minecraft 26.2, and how the older 21.1.x rule worked.

How NeoForge numbers used to work

NeoForge forked from Minecraft Forge in 2023 and made one deliberate change to versioning: the Minecraft version lives inside the NeoForge version. There is no lookup table for the 1.x era, only a rule.

In the 1.x era the leading 1 never changed, so it was dropped. What remained was three components:

21 . 1 . 244
│    │    └── build counter, increments per build for that Minecraft version
│    └─────── Minecraft patch
└──────────── Minecraft minor

21.1.244 targets Minecraft 1.21.1. 21.11.44 targets 1.21.11. A patch of 0 means the base release with no patch component, so 21.0.167 targets Minecraft 1.21, not 1.21.0.

The four part scheme in the calendar era

Calendar versions have no constant prefix to drop. 26.1.2 is year, drop and patch, with nothing implied. So NeoForge kept the same idea and gained a component:

26 . 2 . 0 . 35 -beta
│    │    │    │    └── channel suffix, absent on a finished build
│    │    │    └─────── build counter
│    │    └──────────── Minecraft patch, 0 means the base release
│    └───────────────── Minecraft drop within the year
└────────────────────── Minecraft year

Both shapes are live at the same time, because the 1.21 line is still maintained. The component count is the tell: three components is a 1.x target, four components is a calendar target.

Reading 26.2.0.35-beta

Taken apart, 26.2.0.35-beta is build 35 for Minecraft 26.2, published on the beta channel. The patch component is 0, so the target is 26.2 rather than 26.2.0. Compare that with 26.1.2.87, which is build 87 for Minecraft 26.1.2 and carries no suffix, so it is a finished build.

The same rule applied in reverse gives you the prefix to search for. For Minecraft 26.2 that prefix is 26.2.0., and every build under it targets your version. Only the trailing build counter changes.

What the beta suffix means for stability

A suffix is a statement about the loader, not about your mod. NeoForge marks a line beta while its API for that Minecraft version is still moving, and alpha earlier than that. Builds like 26.1.0.0-alpha.1+snapshot-1 exist for snapshot targets.

This matters because for several Minecraft versions a beta is the only thing published. Compatibility rows on this site carry the evidence label declared, since NeoForge itself states the target, but the confidence is lowered where the newest build is a beta rather than a release. A declared beta is real support with a caveat, and showing it as equal to a finished build would be dishonest.

Practical consequences: pin an exact build rather than a version range, expect API changes between betas without a deprecation cycle, and re-test after every bump.

Picking a version for your Minecraft release

The newest build recorded per Minecraft version, from the NeoForged Maven repository:

MinecraftNeoForgeChannel
26.226.2.0.35-betabeta
26.1.226.1.2.87release
26.1.126.1.1.15-betabeta
26.126.1.0.19-betabeta
1.21.1121.11.44release
1.21.1021.10.64release
1.21.921.9.16-betabeta
1.21.821.8.54release
1.21.721.7.25-betabeta
1.21.621.6.20-betabeta
1.21.521.5.98release
1.21.421.4.157release
1.21.321.3.97release
1.21.221.2.1-betabeta
1.21.121.1.244release
1.2121.0.167release
1.20.620.6.139release
1.20.420.4.251release
1.20.220.2.93release

Build counters climb continuously, so the number in this table is a floor, not a fixed answer. Check the NeoForge loader page for the build that is current today.

Two things are worth noting from the table. The counter resets for every Minecraft version, so a high number means a long lived version rather than a newer loader: 1.21.4 reached build 157 and 1.21.1 reached 244, while 26.2 is only at 35 because it is new. And the presence of a version in this table is not a promise that a build is finished, only that one exists.

In a NeoForge MDK the two values sit in gradle.properties:

minecraft_version=26.2
neo_version=26.2.0.35-beta

Keep them consistent. A neo_version whose embedded Minecraft version disagrees with minecraft_version will fail at runtime rather than at build time, which is a slow way to find the mistake.

Where the version list comes from

NeoForge publishes its builds through the NeoForged Maven repository, and the version list is a plain JSON array:

curl -s https://maven.neoforged.net/api/maven/versions/releases/net/neoforged/neoforge \
  | jq -r '.versions[-15:][]'

The array is oldest first, so the tail is what you want. Our sync reads this list, applies the two shape rules above, and skips anything that fits neither rather than guessing at a mapping. A version that cannot be mapped is left out, because a confident wrong answer about compatibility is worse than a missing one.

Note the contrast with Forge, which publishes a promotions file keyed by Minecraft version instead. There the mapping is given and nothing is derived, which is covered in the Forge version guide.

What could change

The four part scheme is only a few months old, so it is the part most likely to move. If Minecraft adds a component beyond 26.1.2, or if NeoForge decides the year prefix is redundant, the parsing rule here stops matching and builds will start being skipped rather than mis-mapped.

To check, run the curl command above and compare the newest entries against the NeoForge loader page and the loader row on the Minecraft 26.2 page. If Maven lists a shape that is not in this guide, the rule needs updating. Beta lines also promote to release without any announcement, so a version listed as beta here may be finished by the time you read it.

Frequently asked

Which NeoForge version works with 26.2?

The newest build recorded for Minecraft 26.2 is 26.2.0.35-beta. Any build whose number starts 26.2.0 targets Minecraft 26.2. The version list on this site is refreshed from the NeoForged Maven repository, so check the loader page for the current build before you copy a number out of a guide.

Why does NeoForge 21.1.x mean Minecraft 1.21.1?

In the 1.x era the leading 1 never changed, so NeoForge dropped it. The remaining components are the Minecraft minor and patch, followed by a build counter. 21.1.244 reads as Minecraft 1.21.1, build 244.

Is a beta NeoForge build safe to run?

It means the loader is not finished for that Minecraft version, not that it is broken. Betas are normal for the first months of a new release, and for some versions a beta is the only build that exists. Expect API changes between betas, and pin an exact build rather than a range.

How do NeoForge and Forge version numbers differ?

NeoForge encodes the Minecraft version inside its own number, so the mapping is readable. Forge does not: its numbers are a single counter that climbs across all Minecraft versions, so 65.0.9 tells you nothing on its own and has to be looked up.

Referenced on this site

Last reviewed 2026-07-27. Version data on this site updates automatically; this guide is reviewed by hand when the ecosystem changes.