vortex 0.85.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 June 2026 `preview` component cohort.

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

/// The June 2026 draft edition of the `preview` family.
pub const PREVIEW_2026_06_0: EditionId = EditionId::new("preview", 2026, 6, 0);

/// The declaration of [`PREVIEW_2026_06_0`] and the components that join the family at it.
pub static DECLARATION: EditionDeclaration = EditionDeclaration {
    edition: Edition {
        id: PREVIEW_2026_06_0,
        min_vortex_version: None,
    },
    added: &[EditionMember::layout(&"vortex.list")],
};