15 lines
294 B
C++
15 lines
294 B
C++
// Copyright (c) ONNX Project Contributors
|
|
|
|
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace ONNX_NAMESPACE {
|
|
|
|
// Represents the most recent release version. Updated with every release.
|
|
constexpr const char* LAST_RELEASE_VERSION = "1.17.0";
|
|
|
|
} // namespace ONNX_NAMESPACE
|