Guide
Minecraft version numbering: what happened to 1.22?
In 2026 Mojang stopped counting 1.19, 1.20, 1.21 and switched to calendar versioning. If you are looking for 1.22, you want 26.1. Everything downstream changed with it, from plugin compatibility to sorting a version list.
The short answer
Minecraft Java Edition versions now use YY.N: the two-digit year, then the drop number within that year. The first release under the new scheme was 26.1 on 24 Mar 2026, replacing what would have been 1.22. The last release using 1.x numbering was 1.21.11.
Old scheme vs new scheme
| What | Before 2026 | From 2026 |
|---|---|---|
| Full release | 1.21.8 | 26.2 |
| Version family | 1.21 | 26.2 |
| Snapshot | 25w41a | 26.3-snapshot-1 |
| Pre-release | 1.21-pre1 | 26.2-pre1 |
| Release candidate | 1.21-rc1 | 26.2-rc-1 |
| Cadence | One large update per year | Several smaller drops per year |
Why sorting versions breaks now
Under 1.x you could compare versions by splitting on dots and comparing numbers. That silently produces the wrong order once calendar versions exist: a naive comparison puts 1.21.11 above 26.2 or below 26.2 depending on the algorithm, and neither is reliable.
The only correct source of order is release chronology. Mojang publishes it in the official version manifest, which is what every version list on this site is sorted by, never by parsing the version string.
Every calendar release so far
Full releases under the new scheme, newest first.
Frequently asked
What happened to Minecraft 1.22?
There is no 1.22. Mojang replaced the 1.x scheme with calendar versioning, so the release that would have been 1.22 shipped as 26.1. The last release under the old scheme was 1.21.11.
How do I read a version like 26.2?
The first number is the calendar year (26 = 2026) and the second is the drop number within that year. 26.2 is the second drop of 2026. It is not a minor version of 26.1. Each drop is a full release.
Is 26.2 newer than 1.21.11?
Yes. Every calendar version is newer than every 1.x version, because the scheme changed after 1.21.11. Sorting the strings alphabetically or numerically gives the wrong answer, which is why version lists on many sites are now out of order.
What do snapshot names look like now?
Snapshots are named after the release they are testing, like 26.3-snapshot-5, instead of the old week-based codes such as 25w41a.
Does this change which Java version I need?
Not directly. The Java requirement is set per release regardless of the numbering. 26.2 requires Java 25 or newer.
Version data on this page comes from Mojang's official version manifest and updates automatically. NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.