vortex-edition 0.86.1

Definitions of Vortex editions: named, frozen sets of serialized components with a read-compatibility guarantee
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! The August 2026 core edition adding canonical Map arrays.

use crate::Edition;
use crate::EditionDeclaration;
use crate::EditionId;
use crate::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_library_version: Some("0.85.0"),
    },
    added: &[EditionMember::array(&"vortex.map")],
};