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 August 2026 draft core edition adding canonical Map arrays.

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

/// The third August 2026 edition of the `core` family.
pub const CORE_2026_08_2: EditionId = EditionId::new("core", 2026, 8, 2);

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