Skip to content

Commit 4f0df42

Browse files
committed
Support bitcoin-core-26.0
Signed-off-by: adoerr <[email protected]>
1 parent 61e5f35 commit 4f0df42

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ anyhow = "1.0.66"
3535
# download is not supposed to be used directly only through selecting one of the version feature
3636
"download" = ["bitcoin_hashes", "flate2", "tar", "minreq", "zip"]
3737

38+
"26_0" = ["download", "25_1"]
3839
"25_1" = ["download", "25_0"]
3940
"25_0" = ["download", "24_0_1"]
4041
"24_0_1" = ["download", "23_1"]

sha256/bitcoin-core-26.0-SHA256SUMS

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
665b532b8e1f84336931c3fdd71f983ca51fbe9983b7872e4e6ff955c388ea3e bitcoin-26.0-aarch64-linux-gnu-debug.tar.gz
2+
9cf64f42c72d8a96892aa1e2ec9cbca6f3b7094148a8261127390bc6fb4d20c4 bitcoin-26.0-aarch64-linux-gnu.tar.gz
3+
d114cf094f2ea39d1086f99c0b7956a57bca48846eb1ae41b2ff42fd94b6b067 bitcoin-26.0-arm-linux-gnueabihf-debug.tar.gz
4+
e02b8b02fffc74f603bd7030809fefd3d95808e059f1da5e3269d5d98f18809b bitcoin-26.0-arm-linux-gnueabihf.tar.gz
5+
06932a519f4d3cc3ce5df98b966b8f4c5e1c5d8c391bc5ab95c1828ce36e47db bitcoin-26.0-arm64-apple-darwin.zip
6+
b7ea1ccd4453b8bcbc05d12f7af1e0b201e509c3eb6cb17c931d9a7aa24d483c bitcoin-26.0-arm64-apple-darwin-unsigned.tar.gz
7+
4371db6fb85036ac5c456a8c66c868a90137cd065a65238887f14600de22de55 bitcoin-26.0-arm64-apple-darwin-unsigned.zip
8+
c25af199a4006f23528985492ea33437574b3203c11ad1aa3bd1b8d33c6f6576 bitcoin-26.0-arm64-apple-darwin.tar.gz
9+
777527bd3b6cc09f76e90b91c50390f0b6417bd6bf44e82f14a8addd9ee04e3d bitcoin-26.0-codesignatures-26.0.tar.gz
10+
ab1d99276e28db62d1d9f3901e85ac358d7f1ebcb942d348a9c4e46f0fcdc0a1 bitcoin-26.0.tar.gz
11+
9a662145d6e0c66de880131dd21c4d1d86f7de58c998b5918c741d9d0c5924a4 bitcoin-26.0-powerpc64-linux-gnu-debug.tar.gz
12+
525bbb814bb2f5ab8c479dcf07568954a28e169afdbbb54711457a7b8bb09976 bitcoin-26.0-powerpc64-linux-gnu.tar.gz
13+
9e391555e0bdd6a51f8bbe430ab34f28d07a230b093c4cf372c1245a69255061 bitcoin-26.0-powerpc64le-linux-gnu-debug.tar.gz
14+
dfcf4db4edd6323b10239e166d65b044bd9ba3be407c6a129dfb906ff694c296 bitcoin-26.0-powerpc64le-linux-gnu.tar.gz
15+
6a2746c8f5e7124074fa8d3bb3f8f8caaa1edc2f434e3677ad399c58dd41eea3 bitcoin-26.0-riscv64-linux-gnu-debug.tar.gz
16+
456f7ac03717a9f549a4e29e3cd1c24a8e9c44b7cf930d2f9e721fa3e85d2d2d bitcoin-26.0-riscv64-linux-gnu.tar.gz
17+
97449ecc2149ae59c6d6538ddf05645e127ccc28888d69e36daca8bcb6339b97 bitcoin-26.0-x86_64-apple-darwin.zip
18+
fdbe700b0c85af8a8025bb57cd590ee09b03031e60081627a30d2dc2fd5ddc47 bitcoin-26.0-x86_64-apple-darwin-unsigned.tar.gz
19+
0db31c4f60fa719a9cc0d88de8465260c534b7b37859fe7a4acfb5a5923ab464 bitcoin-26.0-x86_64-apple-darwin-unsigned.zip
20+
6e9864d0f59d5b7e8769ee867dd4b1f91602584b5736796e37d292e5c34d885a bitcoin-26.0-x86_64-apple-darwin.tar.gz
21+
61b01b23fbbf7ca610acb567cc256eb2517868515f412be5fce9521bb897c20d bitcoin-26.0-x86_64-linux-gnu-debug.tar.gz
22+
23e5ab226d9e01ffaadef5ffabe8868d0db23db952b90b0593652993680bb8ab bitcoin-26.0-x86_64-linux-gnu.tar.gz
23+
fe95ec448ce211829c9629ad6d750236291b53f05f50e270e97fef6b08ffe3c8 bitcoin-26.0-win64-setup.exe
24+
14244bcaa55180a388d6b7cadc9aad8d8b313ea16af7f45a5fcef4fe85ea8206 bitcoin-26.0-win64-debug.zip
25+
cc91b2a09e59b2e0c48d27ae7476e6ddc739fb228a4cd6c17d98ecdb5f8af170 bitcoin-26.0-win64-setup-unsigned.exe
26+
49a4f8207e5be1fefb0ca01f8d470d9683c6037034fe7638c157419fc82dcfed bitcoin-26.0-win64-unsigned.tar.gz
27+
8d0e909280012d91d08f0321c53a3ceea064682ca635098910b33e4e94c82ed1 bitcoin-26.0-win64.zip

src/versions.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
#[cfg(feature = "25_1")]
1+
#[cfg(feature = "26_0")]
2+
pub const VERSION: &str = "26.0";
3+
4+
#[cfg(all(feature = "25_1", not(feature = "26_0")))]
25
pub const VERSION: &str = "25.1";
36

47
#[cfg(all(feature = "25_0", not(feature = "25_1")))]

0 commit comments

Comments
 (0)