99//! policy with [`crate::editions::enable_default_editions`].
1010//!
1111//! The default file writer resolves the session's enabled editions at write time. The
12- //! facade enables the newest frozen `core` edition, [`crate::editions::CORE_2026_07_0 `], and
12+ //! facade enables the newest frozen `core` edition, [`crate::editions::CORE_2026_08_1 `], and
1313//! additionally enables the latest unstable edition when the `unstable_encodings` feature is
1414//! selected.
1515
@@ -33,13 +33,14 @@ pub use self::core::CORE_2025_05_0;
3333pub use self :: core:: CORE_2025_06_0 ;
3434pub use self :: core:: CORE_2025_10_0 ;
3535pub use self :: core:: CORE_2026_07_0 ;
36+ pub use self :: core:: CORE_2026_08_1 ;
3637pub use self :: unstable:: UNSTABLE_2025_05_0 ;
3738pub use self :: unstable:: UNSTABLE_2026_02_0 ;
3839pub use self :: unstable:: UNSTABLE_2026_04_0 ;
3940pub use self :: unstable:: UNSTABLE_2026_06_0 ;
4041
4142/// The `core` edition enabled for writing by the default Vortex session.
42- pub const DEFAULT_CORE_EDITION : EditionId = CORE_2026_07_0 ;
43+ pub const DEFAULT_CORE_EDITION : EditionId = CORE_2026_08_1 ;
4344
4445/// The `unstable` edition enabled for writing by the default Vortex session when the
4546/// `unstable_encodings` feature is selected.
@@ -51,6 +52,7 @@ pub static EDITION_DECLARATIONS: &[&EditionDeclaration] = &[
5152 & core:: v2025_06:: DECLARATION ,
5253 & core:: v2025_10:: DECLARATION ,
5354 & core:: v2026_07:: DECLARATION ,
55+ & core:: v2026_08_1:: DECLARATION ,
5456 & unstable:: v2025_05:: DECLARATION ,
5557 & unstable:: v2026_02:: DECLARATION ,
5658 & unstable:: v2026_04:: DECLARATION ,
0 commit comments