Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 7x 7x | // SPDX-FileCopyrightText: 2025-2026 Anaconda, Inc // SPDX-License-Identifier: Apache-2.0 /** * Version information for the telemetry SDK. * * This file contains version constants used throughout the library. * Update these values when releasing new versions. */ /** Version of the telemetry SDK */ export const sdkVersion = "0.9.1"; /** Version of the telemetry schema used by this SDK: https://github.com/anaconda/anaconda-otel-python/blob/main/docs/source/schema-versions.md */ export const schemaVersion = "0.3.0"; |