Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/catalog-protos/objects_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,9 @@
{
"name": "objects_v82.rs",
"md5": "dfd89e1c62b7f1663d6429846a76159f"
},
{
"name": "objects_v83.rs",
"md5": "dfd89e1c62b7f1663d6429846a76159f"
}
]
3 changes: 2 additions & 1 deletion src/catalog-protos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ pub mod objects_v79;
pub mod objects_v80;
pub mod objects_v81;
pub mod objects_v82;
pub mod objects_v83;
pub mod serialization;

/// The current version of the `Catalog`.
///
/// We will initialize new `Catalog`s with this version, and migrate existing `Catalog`s to this
/// version. Whenever the `Catalog` changes, e.g. the types we serialize in the `Catalog`
/// change, we need to bump this version.
pub const CATALOG_VERSION: u64 = 82;
pub const CATALOG_VERSION: u64 = 83;

/// The minimum `Catalog` version number that we support migrating from.
///
Expand Down
Loading
Loading