Skip to content

Commit

Permalink
raise the minimum schema version to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed May 12, 2024
1 parent 2281ac5 commit d575371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biscuit-auth/src/token/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub use third_party::*;
/// minimum supported version of the serialization format
pub const MIN_SCHEMA_VERSION: u32 = 3;
/// maximum supported version of the serialization format
pub const MAX_SCHEMA_VERSION: u32 = 4;
pub const MAX_SCHEMA_VERSION: u32 = 5;

/// some symbols are predefined and available in every implementation, to avoid
/// transmitting them with every token
Expand Down

0 comments on commit d575371

Please sign in to comment.