vortex 0.84.0

Vortex file format with all builtin codecs and a sampling compressor.
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! The April 2026 `unstable` encoding cohort.

use vortex_edition::Edition;
use vortex_edition::EditionDeclaration;
use vortex_edition::EditionId;

/// The April 2026 draft edition of the `unstable` family.
pub const UNSTABLE_2026_04_0: EditionId = EditionId::new("unstable", 2026, 4, 0);

/// The declaration of [`UNSTABLE_2026_04_0`] and the encodings that join the family at it.
pub static DECLARATION: EditionDeclaration = EditionDeclaration {
    edition: Edition {
        id: UNSTABLE_2026_04_0,
        min_vortex_version: None,
    },
    added: &[
        &"vortex.parquet.variant",
        &"vortex.patched",
        &"vortex.tensor.cosine_similarity",
        &"vortex.tensor.inner_product",
        &"vortex.tensor.normalized",
        &"vortex.tensor.l2_norm",
    ],
};