penumbra_sdk_app/app_version.rs
1/// Representation of the Penumbra application version. Notably, this is distinct
2/// from the crate version(s). This number should only ever be incremented.
3pub const APP_VERSION: u64 = 9;
4
5cfg_if::cfg_if! {
6 if #[cfg(feature="component")] {
7 mod component;
8 pub use component::{check_and_update_app_version, migrate_app_version};
9 }
10}