Back to Onnx

ONNX release management

RELEASE-MANAGEMENT.md

1.21.05.2 KB
Original Source
<!-- Copyright (c) ONNX Project Contributors SPDX-License-Identifier: Apache-2.0 -->

ONNX release management

This describes the process by which versions of ONNX are officially released to the public.

Release Cadence

Branch cuts for a new release are planned every 4 months. However, the times can be changed as required.

Minor VersionRelease branch cutRelease dateFirst patch release date
1.17.0XYZXYZNot planned
1.18.0Mar 2025May 2025Not planned
1.19.031. July 202527. August 20259. October 2025
1.20.031. October 2025November 2025January 2026
1.21.0 (tbd)February 2026March 2026tbd

Release Compatibility Matrix

Support for a Python version that went eol will be discontinued in the following ONNX release. ONNX does NOT follow https://scientific-python.org/specs/spec-0000/ or https://protobuf.dev/support/version-support/

Changes are discussed in the community. Please do not hesitate to contact us if you have any requests. Planned changes for future releases as listed in the table below are subject to change.

ONNX versionPython wheelsC++Min Cmake VersionMin Protobufmanylinux
1.183.9-3.13, 3.13t (win, mac)---3.18v25.1manylinux2014
1.193.9-3.13, 3.13t (win, mac, linux)---3.24v25.1manylinux2014
1.19.13.9-3.13, 3.13t (win, mac, linux)---3.24v25.1manylinux2014
1.203.10-3.13, 3.13t (win, mac, linux), 3.143.26---v25.1manylinux2_28
1.213.26manylinux2_28

Releases

Releases are versioned according to ONNX Versioning. This describes IR and operator versioning policies, as well as propose how models themselves should be versioned.

On a regular basis, new versions of ONNX are published, representing the aggregate of changes in the IR and operator sets. Such releases use semantic versioning to describe the progression of the standard.

The GitHub repo for ONNX provides release branches where the project is stabilized as per the process described here. Release notes are used to communicate the stability and status of a release. The main branch will be used to continue work for subsequent releases.

Major, minor and patch releases will have branch names and version numbers reflecting the nature of the change as per semantic versioning definitions.

Workflow

The following workflow describes the steps taken to release an update of ONNX, and can be undertaken regardless of whether a major, minor or patch release is to be produced.

  • The trigger for the workflow will typically be a time-based trigger based on elapsed time (say every three months).

  • The release manager will announce the intent of the process (to produce major, minor or patch update) and the overall timeline (documented in our wiki: example. A release branch is created with the name rel-major#.minor#(.patch#), and any version references in build scripts or version checks are updated.

  • The release manager announces the initial commit for testing. The first period lasts two weeks; any regressions found should be fixed, typically via the main branch. Incomplete features should be done or excised during this period. A distribution can be made available with an -RC1 suffix.

  • The release manager announces a second round of testing (unless it's only a patch update with no regressions found). Only critical bugs are fixed at this point, or those introduced by patches from the first week. A third week may be introduced at the release manager's discretion if significant fixes need to be taken. Distributions with -RCn suffixes can be made available if convenient.

  • Release notes are updated with final changes, and a file with sources is provided along with a release on the GitHub project page.

Testing

The release process really consists of communicating, testing to establish a known state of the project, and distributing files. This section deals with the second task.

At the very least, the tests that are part of the /test folder should be run under a variety of configurations. Issues fixed should ensure coverage in this suite to avoid regressions.

Send a Pull Request for updates to this section to include a configuration you can help test if you care about one that's missing.

The community is encouraged to perform additional testing during the test periods. Bugs and issues should be filed in the ONNX GitHub repo.

ONNX Weekly Builds on PyPI

In addition to stable releases, we publish weekly development builds to a separate PyPI package: onnx-weekly.

Why a Separate Package?

  • Avoid accidental installs: Pre-release versions can be installed unintentionally; onnx-weekly ensures stable users are unaffected.
  • Enable safe testing: Try upcoming features without impacting stable installs. Both packages can coexist.
  • Simplify automation: Weekly builds are pushed automatically from main without polluting the main release history.

Installation

bash
pip install onnx-weekly