Pragmatic Versioning 0.0.1

Hacker News Discussion · Edit on Github · Website

Summary

Pragmatic versioning optimizes for communicating changes to a package to package consumers,
while retaining simple semantics for package maintainers.

Given a version number BIGRELEASE.ANNOUNCE.INCREMENT, increment the:

  1. BIGRELEASE version whenever a major milestone, periodic version cut (e.g.
    a yearly release) or other marketed version change occurs, a BIGRELEASE
    is often accompanied with a maintanence period.
  2. ANNOUNCE version whenever you have made an substantial incompatible API change,
    introduced a new set of features, or any change that an end user using the software
    normally may notice and should accompany an announcement.
  3. INCREMENT version for any new project contribution.

Introduction, Motivation

Effective package authors must maintain old versions of software as well as release new versions,
while efficiently communicating expectations and changes to their package consuemrs. Existing
versioning schemes like semver are excellent at informing end users
on how to upgrade software, but do not allow package authors to efficiently communicate what will
be maintained, how to get the most appropriate version for the end user, and automatically release
software without worrying about explicitly labeling each change.

Pragmatic versioning looks at the issues that package authors face and addresses these first:

Definitions

Where Semantic Versioning Fails

Tagged Versions and Computed Version

Package consumers can still have the majority of the benefits of semantic versioning through the usage
of tagged or computed versions. For example, npm add somepackage@lts, npm add somepackage@latest-unstable, npm add somepackage@canary more accurately represents the intent of the user.

These tagged releases can be also be computed using commit analysis or explicit cutting. In this way,
package authors have the flexibility to serve users with different risk and upgrade tolerances.

Automatic Upgrading

In practice, package consumers want to stay up to date/compatible with the latest BIGRELEASE, consuming
some breaking changes in their upgrade process. It is necessary for package consumers to take some
breaking changes as part of their upgrade process, because in practice only large releases are best
maintained for security
.

Furthermore, the introduction of static analysis tools to many previously

Fundamental Issues with Semantic Versioning

Pragmatic Versioning in the wild

NodeJS

NodeJS has created a timed release versioning system as described below:

Major Node.js versions enter Current release status for six months, which gives library authors time to add support for them. After six months, odd-numbered releases (9, 11, etc.) become unsupported, and even-numbered releases (10, 12, etc.) move to Active LTS status and are ready for general use. LTS release status is "long-term support", which typically guarantees that critical bugs will be fixed for a total of 30 months. Production applications should only use Active LTS or Maintenance LTS releases.

This mode of versioning gives great expectations to their users and is compatible with a
Pragmatic Versioning system, but incompatible with Semantic Versioning.

Canary-tagged Pragmatic Versioning (NextJS)

NextJS uses pragmatic versioning scheme in combination with a semantic release scheme.

Future Work