RELEASE-MANAGEMENT.md
This describes the process by which versions of ONNX are officially released to the public.
Branch cuts for a new release are planned every 4 months. However, the times can be changed as required.
| Minor Version | Release branch cut | Release date | First patch release date |
|---|---|---|---|
| 1.17.0 | XYZ | XYZ | Not planned |
| 1.18.0 | Mar 2025 | May 2025 | Not planned |
| 1.19.0 | 31. July 2025 | 27. August 2025 | 9. October 2025 |
| 1.20.0 | 31. October 2025 | November 2025 | January 2026 |
| 1.21.0 (tbd) | February 2026 | March 2026 | tbd |
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 version | Python wheels | C++ | Min Cmake Version | Min Protobuf | manylinux |
|---|---|---|---|---|---|
| 1.18 | 3.9-3.13, 3.13t (win, mac) | --- | 3.18 | v25.1 | manylinux2014 |
| 1.19 | 3.9-3.13, 3.13t (win, mac, linux) | --- | 3.24 | v25.1 | manylinux2014 |
| 1.19.1 | 3.9-3.13, 3.13t (win, mac, linux) | --- | 3.24 | v25.1 | manylinux2014 |
| 1.20 | 3.10-3.13, 3.13t (win, mac, linux), 3.14 | 3.26 | --- | v25.1 | manylinux2_28 |
| 1.21 | 3.26 | manylinux2_28 |
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.
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.
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.
In addition to stable releases, we publish weekly development builds to a separate PyPI package: onnx-weekly.
onnx-weekly ensures stable users are unaffected.main without polluting the main release history.pip install onnx-weekly