From 6438746ff9e4c2c9fdd87b92b93ef661502454e6 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Fri, 22 Nov 2024 12:23:29 -0800 Subject: [PATCH] chore: increment APP_VERSION --- COMPATIBILITY.md | 1 + crates/core/app/src/app_version.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 76436ebaac..345b75ab60 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -9,3 +9,4 @@ | 7 (Testnet 78) | v0.78.x | v0.37.5 | v1 | | 7 (Mainnet) | v0.79.x | v0.37.x | v1 | | 8 (Mainnet) | v0.80.x | v0.37.x | v1 | +| 9 (Mainnet) | v0.81.x | v0.37.x | v1 | diff --git a/crates/core/app/src/app_version.rs b/crates/core/app/src/app_version.rs index 93ad9afc47..ec1e09e13a 100644 --- a/crates/core/app/src/app_version.rs +++ b/crates/core/app/src/app_version.rs @@ -1,6 +1,6 @@ /// 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 = 8; +pub const APP_VERSION: u64 = 9; cfg_if::cfg_if! { if #[cfg(feature="component")] {