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 `core` edition adding stable encodings released through October 2025.

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

/// The October 2025 edition of the `core` family.
pub const CORE_2025_10_0: EditionId = EditionId::new("core", 2025, 10, 0);

/// The declaration of [`CORE_2025_10_0`] and the encodings that join the family at it.
pub static DECLARATION: EditionDeclaration = EditionDeclaration {
    edition: Edition {
        id: CORE_2025_10_0,
        min_vortex_version: Some("0.54.0"),
    },
    added: &[
        EditionMember::array(&"fastlanes.rle"),
        EditionMember::array(&"vortex.fixed_size_list"),
        EditionMember::array(&"vortex.listview"),
        EditionMember::array(&"vortex.masked"),
    ],
};