penumbra_app/
app_version.rs

1
2
3
4
5
6
7
8
9
10
/// Representation of the Penumbra application version. Notably, this is distinct
/// from the crate version(s). This number should only ever be incremented.
pub const APP_VERSION: u64 = 9;

cfg_if::cfg_if! {
    if #[cfg(feature="component")] {
        mod component;
        pub use component::{check_and_update_app_version, migrate_app_version};
    }
}