ChromiumBuilds

How Chromium version numbers work

What each part of 152.0.7977.65 means, how revisions relate to versions, and how to tell whether your build is genuinely out of date.

A Chromium version looks like 152.0.7977.65. Four numbers, and only two of them carry much meaning.

The four parts

Major (152). The milestone. Increments every four weeks or so with a new release cycle. This is the number that matters for judging whether a build is current.

Minor (0). Effectively always zero. A historical artefact.

Build (7977). The branch point, incrementing across the whole project. Every release from a given milestone shares it, so 152.0.7977.65 and 152.0.7977.120 come from the same branch.

Patch (65). Increments with each fix released from that branch. Security updates move this number and nothing else.

What a version gap means

Comparing your build's major version against the current stable release tells you what you need to know:

This site computes exactly that comparison, which is where the Current, One version behind and Outdated labels come from. Nobody assigns them by hand.

Revisions are a different thing

A revision, like r1669021, is a commit position in the main branch. It counts commits, not releases.

Versions describe releases from tested branches; revisions describe individual commits. They advance independently, and a higher revision does not necessarily mean a newer release. Snapshots are indexed by revision, which is what makes bisecting possible.

Channels

Chromium flows through four channels: canary (daily, untested), dev (roughly weekly), beta (next milestone, about four weeks ahead of stable) and stable.

Most builds on this site follow stable. RobRich's follow the development channel, which is why they carry a higher version than everything else and why they are labelled accordingly.

Chromium and Chrome versions

They track together. Chrome 152 and Chromium 152 are the same milestone from the same source, and Chrome's patch number may differ slightly because Google ships fixes on its own schedule.

So the current Chrome version is a reliable reference for what Chromium stable should be. This site reads it from Google's own version feed rather than inferring it.

Checking your version

chrome://version shows the full version, the revision it was built from, the command line and the profile path. It is the single most useful diagnostic page in the browser.

The current upstream stable version is shown at the top of the home page, and available in upstream.json if you want to compare programmatically.