Skip to content

Commit 7eecbed

Browse files
committed
Merge #135: Fix version for 27.2 feature flag
698d931 Fix version for 27.2 feature flag (GideonBature) Pull request description: When running with the "27_2" feature flag enabled, the VERSION constant was incorrectly set to "27.1". This PR fixes the version string to properly reflect "27.2" when the corresponding feature flag is active. ACKs for top commit: tcharding: ACK 698d931 Tree-SHA512: 68636e51e6013de64b34ba8205119f94e97dfb8e4af690729acd047a7fc657b5461936ad176fd3acf91c063da861e74eb7c5d0978b6d17d64ebddf6743c5112f
2 parents f0586c0 + 698d931 commit 7eecbed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/src/versions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ compile_error!("enable a feature in order to select the version of Bitcoin Core
2525
pub const VERSION: &str = "28.0";
2626

2727
#[cfg(all(feature = "27_2", not(feature = "28_0")))]
28-
pub const VERSION: &str = "27.1";
28+
pub const VERSION: &str = "27.2";
2929

3030
#[cfg(all(feature = "27_1", not(feature = "27_2")))]
3131
pub const VERSION: &str = "27.1";

0 commit comments

Comments
 (0)