Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/5569.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bump marshal version to 5
2 changes: 1 addition & 1 deletion src/marshal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{PyResult, Python};
use std::ffi::c_int;

/// The current version of the marshal binary format.
pub const VERSION: i32 = 4;
pub const VERSION: i32 = 5;

/// Serialize an object to bytes using the Python built-in marshal module.
///
Expand Down
Loading